ModularPowersuits/build.gradle

159 lines
4.6 KiB
Groovy
Raw Normal View History

2014-09-08 16:35:21 -06: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 10:41:08 -06:00
apply plugin: 'curseforge'
2014-09-08 16:35:21 -06: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 10:41:08 -06: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-08 16:35:21 -06: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 06:02:38 -06:00
getLibrary("CoFHCore-[1.7.10]3.0.3-303-dev.jar")
2015-08-25 05:54:56 -06:00
getLibrary("industrialcraft-2-2.2.765-experimental-api.jar")
2015-08-27 08:20:49 -06:00
getLibrary("ThermalExpansion-[1.7.10]4.0.3B1-218-dev.jar")
2015-08-28 06:18:25 -06:00
getLibrary("GalacticraftCore-Dev-1.7-3.0.12.168.jar")
getLibrary("Railcraft_1.7.10-9.7.0.0-dev.jar")
getLibrary("MineFactoryReloaded-[1.7.10]2.8.0-104-dev.jar")
2015-08-27 08:20:49 -06:00
getLibrary("forestry_1.7.10-3.6.3.20-api.jar")
getLibrary("Thaumcraft-deobf-1.7.10-4.2.3.5.jar")
2015-08-26 09:16:01 -06:00
getLibrary("SmartRender-1.7.10-2.1.jar")
getLibrary("RenderPlayerAPI-1.7.10-1.4.jar")
getLibrary("appliedenergistics2-rv2-stable-10-dev.jar")
getLibrary("buildcraft-7.0.21-dev.jar")
getLibrary("BluePower-1.7.10-0.2.962-universal.jar")
getLibrary("EnderIO-1.7.10-2.2.8.381-dev.jar")
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")
getLibrary("Chisel2-2.5.0.43-deobf.jar")
getLibrary("Chisel-2.9.0.3-deobf.jar")
2014-09-08 16:35:21 -06: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-08 16:35:21 -06: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-08 16:35:21 -06:00
jar {
manifest {
attributes 'FMLAT': 'numina_at.cfg'
}
}
2014-09-08 16:35:21 -06:00
task devJar(type: Jar) {
from sourceSets.main.output
classifier = 'dev'
}
task copyToLib(type: Copy) {
into "$buildDir/libs"
2014-09-09 09:08:50 -06:00
from(sourceSets.main.resources.srcDirs){
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 08:48:35 -06: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 "";
}
}
build.dependsOn(copyToLib)
2014-09-08 16:35:21 -06:00
artifacts {
archives devJar
2015-05-14 14:59:05 +03:00
}
2015-08-27 10:41:08 -06:00
curse {
projectId = '235442'
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
def branch = System.getenv("GIT_BRANCH")
if(branch == null) {
releaseType = 'alpha'
2015-08-28 09:16:29 -06:00
} else if(branch.equals("origin/experimental")) {
releaseType = 'beta'
2015-08-28 09:16:29 -06:00
} else if(branch.equals("origin/master")) {
releaseType = 'release'
2015-08-28 09:16:29 -06:00
} else {
releaseType = 'alpha'
}
changelog = getGitChangelog()
addGameVersion '1.7.10'
2015-08-27 23:22:48 -06:00
relatedProject 'numina': 'requiredLibrary'
2015-08-27 10:41:08 -06:00
}