ModularPowersuits/build.gradle

154 lines
4.4 KiB
Groovy
Raw Normal View History

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")
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 16:20:49 +02: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 17:16:01 +02: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.3.0.408_beta-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")
2014-09-09 00:35:21 +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
// 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
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'
}
task copyToLib(type: Copy) {
into "$buildDir/libs"
2014-09-09 17:08:50 +02:00
from(sourceSets.main.resources.srcDirs){
include 'mps-vanilla.recipes'
include 'mps-thermalexpansion.recipes'
include 'mps-ic2.recipes'
2014-09-09 16:48:35 +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 "";
}
}
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'
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
def branch = System.getEnv('GIT_BRANCH')
if(branch == null) {
releaseType = 'alpha'
} else if(branch.equals("experimental")) {
releaseType = 'beta'
} else if(branch.equals("master")) {
releaseType = 'release'
}
changelog = getGitChangelog()
addGameVersion '1.7.10'
2015-08-28 07:22:48 +02:00
relatedProject 'numina': 'requiredLibrary'
2015-08-27 18:41:08 +02:00
}