2014-09-09 00:35:21 +02:00
buildscript {
repositories {
mavenCentral ( )
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
}
}
apply plugin: 'scala'
apply plugin: 'forge'
2015-08-27 18:41:08 +02:00
apply plugin: 'curseforge'
2014-09-09 00:35:21 +02:00
// define the properties file
ext . configFile = file "project.properties"
configFile . withReader {
// read config. it shall from now on be referenced as simply config or as project.config
def prop = new Properties ( )
prop . load ( it )
project . ext . config = new ConfigSlurper ( ) . parse prop
}
2015-08-27 18:41:08 +02:00
def buildnumber = System . getenv ( "BUILD_NUMBER" )
def travisbuildnumber = ( System . getenv ( "TRAVIS_BUILD_NUMBER" ) ? : - 111 ) . toInteger ( ) + 111
version = "${config.mod_version}." + ( buildnumber ? : travisbuildnumber )
2014-09-09 00:35:21 +02:00
group = "${config.group_id}" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "${config.mod_id}"
minecraft {
version = "${config.minecraft_version}-${config.forge_version}"
runDir = "run"
}
new File ( config . libs_dir ) . mkdirs ( )
def getLibrary ( filename ) {
def f = new File ( config . libs_dir + filename )
if ( ! f . exists ( ) ) {
new URL ( config . apisource_url + filename ) . withInputStream { i - > f . withOutputStream { it < < i } }
}
dependencies {
compile files ( config . libs_dir + filename )
}
}
2015-08-28 14:02:38 +02:00
getLibrary ( "CoFHCore-[1.7.10]3.0.3-303-dev.jar" )
2015-08-25 13:54:56 +02:00
getLibrary ( "industrialcraft-2-2.2.765-experimental-api.jar" )
2015-08-27 16:20:49 +02:00
getLibrary ( "ThermalExpansion-[1.7.10]4.0.3B1-218-dev.jar" )
2015-08-28 14:18:25 +02:00
getLibrary ( "GalacticraftCore-Dev-1.7-3.0.12.168.jar" )
2015-11-13 20:20:18 +01:00
getLibrary ( "Railcraft_1.7.10-9.7.0.0-dev.jar" ) // delete outdated CoFH API from this jar to run in dev environment
2015-08-27 17:01:08 +02:00
getLibrary ( "MineFactoryReloaded-[1.7.10]2.8.0-104-dev.jar" )
2015-08-27 16:20:49 +02:00
getLibrary ( "forestry_1.7.10-3.6.3.20-api.jar" )
2015-08-27 17:01:08 +02:00
getLibrary ( "Thaumcraft-deobf-1.7.10-4.2.3.5.jar" )
2015-11-13 20:20:18 +01:00
getLibrary ( "SmartRender-1.7.10-2.1.jar" ) // this version is ok to build with, but to run in dev environment, download the SmartMoving zip and use the version from that
2015-08-26 15:54:58 +02:00
getLibrary ( "RenderPlayerAPI-1.7.10-1.4.jar" )
2015-08-28 13:05:54 +02:00
getLibrary ( "appliedenergistics2-rv2-stable-10-dev.jar" )
2015-11-13 20:20:18 +01:00
getLibrary ( "ExtraCells-deobf-1.7.10-2.3.0b142.jar" ) // This one may have to be downloaded manually
2015-08-28 13:05:54 +02:00
getLibrary ( "buildcraft-7.0.21-dev.jar" )
getLibrary ( "BluePower-1.7.10-0.2.962-universal.jar" )
2015-11-13 20:20:18 +01:00
getLibrary ( "EnderIO-1.7.10-2.2.8.381-dev.jar" ) // May need to delete Mekanism API from this jar to run in dev environment
2015-08-28 13:05:54 +02:00
getLibrary ( "Mekanism-1.7.10-8.1.7.252.jar" )
getLibrary ( "MrTJPCore-1.1.0.31-universal.jar" )
getLibrary ( "ProjectRed-1.7.10-4.7.0pre8.92-Base.jar" )
2015-08-29 07:44:15 +02:00
getLibrary ( "Chisel2-2.5.0.43-deobf.jar" )
2015-08-29 18:17:17 +02:00
getLibrary ( "Chisel-2.9.0.3-deobf.jar" )
2014-09-09 00:35:21 +02:00
2015-08-28 11:16:09 +02:00
processResources {
// this will ensure that this task is redone when the versions change.
inputs . property "version" , project . version
inputs . property "mcversion" , project . minecraft . version
2014-09-09 00:35:21 +02:00
2015-08-28 11:16:09 +02:00
// replace stuff in mcmod.info, nothing else
from ( sourceSets . main . resources . srcDirs ) {
include 'mcmod.info'
// replace version and mcversion
expand 'version' : project . version , 'mcversion' : project . minecraft . version
}
// copy everything else, thats not the mcmod.info
from ( sourceSets . main . resources . srcDirs ) {
exclude 'mcmod.info'
}
}
2014-09-09 00:35:21 +02:00
2014-09-09 18:59:44 +02:00
jar {
manifest {
attributes 'FMLAT' : 'numina_at.cfg'
}
}
2014-09-09 00:35:21 +02:00
task devJar ( type: Jar ) {
from sourceSets . main . output
classifier = 'dev'
}
2014-09-09 16:14:42 +02:00
task copyToLib ( type: Copy ) {
into "$buildDir/libs"
2014-09-09 17:08:50 +02:00
from ( sourceSets . main . resources . srcDirs ) {
2015-08-28 07:33:02 +02:00
include 'mps-vanilla.recipes'
include 'mps-thermalexpansion.recipes'
include 'mps-ic2.recipes'
2015-08-30 19:19:37 +02:00
include 'mps-enderio.recipes'
2014-09-09 16:48:35 +02:00
}
2014-09-09 16:14:42 +02:00
}
2015-08-28 11:16:09 +02:00
def getGitChangelog = { - >
try {
def stdout = new ByteArrayOutputStream ( )
def gitHash = System . getenv ( "GIT_COMMIT" )
def gitPrevHash = System . getenv ( "GIT_PREVIOUS_COMMIT" )
if ( gitHash & & gitPrevHash ) {
exec {
commandLine 'git' , 'log' , '--pretty=tformat:%s - %aN' , '' + gitPrevHash + '...' + gitHash
standardOutput = stdout
}
return stdout . toString ( ) . trim ( )
} else {
return "" ;
}
} catch ( ignored ) {
return "" ;
}
}
2014-09-09 16:14:42 +02:00
build . dependsOn ( copyToLib )
2014-09-09 00:35:21 +02:00
artifacts {
archives devJar
2015-05-14 13:59:05 +02:00
}
2015-08-27 18:41:08 +02:00
curse {
projectId = '235442'
2015-08-28 09:04:22 +02:00
apiKey = project . hasProperty ( 'curseForgeApiKey' ) ? project . curseForgeApiKey : ''
2015-08-28 16:22:12 +02:00
def branch = System . getenv ( "GIT_BRANCH" )
2015-08-28 16:06:39 +02:00
if ( branch = = null ) {
releaseType = 'alpha'
2015-08-28 17:16:29 +02:00
} else if ( branch . equals ( "origin/experimental" ) ) {
2015-08-28 16:06:39 +02:00
releaseType = 'beta'
2015-08-28 17:16:29 +02:00
} else if ( branch . equals ( "origin/master" ) ) {
2015-08-28 16:06:39 +02:00
releaseType = 'release'
2015-08-28 17:16:29 +02:00
} else {
releaseType = 'alpha'
2015-08-28 16:06:39 +02:00
}
2015-08-28 09:04:22 +02:00
2015-08-28 11:16:09 +02:00
changelog = getGitChangelog ( )
2015-08-28 09:04:22 +02:00
addGameVersion '1.7.10'
2015-08-28 07:22:48 +02:00
relatedProject 'numina' : 'requiredLibrary'
2015-10-22 16:28:51 +02:00
}
apply plugin: 'idea'
idea {
module {
inheritOutputDirs = true
}
}