2015-04-10 00:17:30 +02:00
|
|
|
buildscript {
|
2017-04-14 21:35:09 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2017-02-13 11:34:36 +01:00
|
|
|
maven {
|
2017-04-14 21:35:09 +02:00
|
|
|
name = "forge"
|
|
|
|
url = "http://files.minecraftforge.net/maven"
|
|
|
|
}
|
2017-02-23 13:29:43 +01:00
|
|
|
maven {
|
2017-04-14 21:35:09 +02:00
|
|
|
name = "sonatype"
|
|
|
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "Modmuss50"
|
|
|
|
url = "http://maven.modmuss50.me/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
|
|
|
classpath "gradle.plugin.net.minecrell:licenser:0.2.1"
|
|
|
|
}
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2015-11-23 15:37:18 +01:00
|
|
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
2015-04-10 00:17:30 +02:00
|
|
|
apply plugin: 'maven'
|
|
|
|
apply plugin: 'maven-publish'
|
2017-02-23 13:29:43 +01:00
|
|
|
apply plugin: net.minecrell.gradle.licenser.Licenser
|
2015-04-10 00:17:30 +02:00
|
|
|
|
2016-02-28 18:00:27 +01:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2015-11-24 20:37:15 +01:00
|
|
|
|
2015-04-10 10:43:45 +02:00
|
|
|
|
2017-02-23 13:29:43 +01:00
|
|
|
|
2015-04-10 10:43:45 +02:00
|
|
|
repositories {
|
2017-04-14 21:35:09 +02:00
|
|
|
maven {
|
|
|
|
name = "Modmuss50"
|
|
|
|
url = "http://maven.modmuss50.me/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name "TiC"
|
|
|
|
url "http://dvs1.progwml6.com/files/maven"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "Amadornes"
|
|
|
|
url "http://maven.amadornes.com/"
|
|
|
|
}
|
2017-03-14 14:16:31 +01:00
|
|
|
ivy {
|
|
|
|
name "CraftTweaker"
|
2017-03-14 14:18:23 +01:00
|
|
|
artifactPattern "https://addons-origin.cursecdn.com/files/2392/421/[module]-[revision](-[classifier]).[ext]"
|
2017-03-14 14:16:31 +01:00
|
|
|
}
|
2017-04-14 21:35:09 +02:00
|
|
|
maven {
|
|
|
|
url 'http://maven.epoxide.xyz'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "http://maven.tterrag.com/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "ic2"
|
|
|
|
url = "http://maven.ic2.player.to/"
|
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
// HWYLA
|
|
|
|
name "TehNut"
|
|
|
|
url "http://tehnut.info/maven/"
|
|
|
|
}
|
|
|
|
maven {
|
2017-04-11 13:16:16 +02:00
|
|
|
name 'CB Repo'
|
|
|
|
url "http://chickenbones.net/maven/"
|
|
|
|
}
|
2017-06-02 16:44:00 +02:00
|
|
|
ivy {
|
|
|
|
name "BuildCraft"
|
|
|
|
artifactPattern "http://www.mod-buildcraft.com/releases/BuildCraft/[revision]/[module]-[revision].[ext]"
|
|
|
|
}
|
2015-04-10 10:43:45 +02:00
|
|
|
}
|
|
|
|
|
2015-08-27 17:29:13 +02:00
|
|
|
configurations {
|
2017-04-14 21:35:09 +02:00
|
|
|
shade
|
|
|
|
compile.extendsFrom shade
|
2015-08-27 17:29:13 +02:00
|
|
|
}
|
|
|
|
|
2017-06-02 17:24:40 +02:00
|
|
|
version = "2.3.2"
|
2015-12-30 18:23:45 +01:00
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
def ENV = System.getenv()
|
|
|
|
if (ENV.BUILD_NUMBER) {
|
2017-04-14 21:35:09 +02:00
|
|
|
version = version + "." + "${System.getenv().BUILD_NUMBER}"
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
minecraft {
|
2017-06-02 16:44:00 +02:00
|
|
|
version = "1.11.2-13.20.0.2311"
|
2017-04-11 13:58:35 +02:00
|
|
|
mappings = "snapshot_20161220"
|
2017-04-14 21:35:09 +02:00
|
|
|
replace "@MODVERSION@", project.version
|
|
|
|
// makeObfSourceJar = false
|
|
|
|
useDepAts = true
|
|
|
|
runDir = "run"
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2017-02-23 13:29:43 +01:00
|
|
|
license {
|
2017-04-14 21:35:09 +02:00
|
|
|
header file('HEADER')
|
|
|
|
include '**/*.java'
|
|
|
|
ignoreFailures = true //Stops the build from failing if a file does not have a license header
|
2017-02-23 13:29:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
group = 'TechReborn'
|
|
|
|
|
2016-02-29 12:20:40 +01:00
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
dependencies {
|
2017-04-14 21:35:09 +02:00
|
|
|
deobfCompile('RebornCore:RebornCore-1.11.2:+:universal') {
|
2017-01-31 20:26:12 +01:00
|
|
|
transitive = false
|
|
|
|
}
|
2017-03-14 13:59:17 +01:00
|
|
|
deobfCompile "mezz.jei:jei_1.11.2:+"
|
2016-11-26 23:34:54 +01:00
|
|
|
compile "mcp.mobius.waila:Hwyla:+"
|
2016-11-27 02:15:59 +01:00
|
|
|
compile "net.darkhax.tesla:Tesla:1.11-1.3.0.51:deobf"
|
|
|
|
|
2016-11-26 23:34:54 +01:00
|
|
|
//1.11 updates
|
|
|
|
//deobfCompile "slimeknights:TConstruct:1.10.2-2.5.3.jenkins384"
|
|
|
|
//deobfCompile "slimeknights.mantle:Mantle:1.10.2-1.0.0.jenkins170"
|
|
|
|
deobfCompile "mcjty.theoneprobe:TheOneProbe:1.11-1.3.3-46"
|
2017-03-14 14:16:50 +01:00
|
|
|
compile "CraftTweaker:CraftTweaker:1.11.2-3.0.24"
|
2017-04-21 10:09:28 +02:00
|
|
|
deobfCompile 'net.industrial-craft:industrialcraft-2:2.7.5-ex111'
|
2017-06-02 16:44:00 +02:00
|
|
|
compile name: 'buildcraft', version: '7.99.4', ext: 'jar'
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2015-06-24 00:41:03 +02:00
|
|
|
|
|
|
|
processResources
|
2017-04-14 21:35:09 +02:00
|
|
|
{
|
|
|
|
// this will ensure that this task is redone when the versions change.
|
|
|
|
inputs.property "version", project.version
|
|
|
|
inputs.property "mcversion", project.minecraft.version
|
|
|
|
|
|
|
|
// 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'
|
|
|
|
}
|
|
|
|
}
|
2015-07-01 17:53:03 +02:00
|
|
|
|
2015-11-26 21:43:56 +01:00
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
task deobfJar(type: Jar) {
|
2017-04-14 21:35:09 +02:00
|
|
|
from sourceSets.main.output
|
|
|
|
exclude "**/*.psd"
|
|
|
|
classifier = 'dev'
|
2016-04-16 10:02:33 +02:00
|
|
|
}
|
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
|
|
|
|
jar {
|
2017-04-14 21:35:09 +02:00
|
|
|
exclude "**/*.psd"
|
|
|
|
classifier = 'universal'
|
|
|
|
// configurations.shade.each { dep ->
|
|
|
|
// from(project.zipTree(dep)){
|
|
|
|
// include 'ic2/api/'
|
|
|
|
// include 'forestry/api/fuels/'
|
|
|
|
// exclude 'META-INF', 'META-INF/**', '**/*.java'
|
|
|
|
// }
|
|
|
|
// }
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 10:07:59 +02:00
|
|
|
task apiJar(type: Jar) {
|
2017-04-14 21:35:09 +02:00
|
|
|
from sourceSets.main.allSource
|
|
|
|
from sourceSets.main.output
|
|
|
|
include 'techreborn/api/**/*'
|
2015-06-22 22:32:46 +02:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
classifier = "api"
|
2015-04-12 11:36:12 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 10:07:59 +02:00
|
|
|
apiJar.mustRunAfter deobfJar
|
2015-04-12 11:36:12 +02:00
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
artifacts {
|
2017-04-14 21:35:09 +02:00
|
|
|
archives deobfJar
|
|
|
|
archives apiJar
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2016-04-17 12:59:18 +02:00
|
|
|
build.dependsOn deobfJar, apiJar
|
2015-11-22 17:24:50 +01:00
|
|
|
|
2016-05-26 18:31:02 +02:00
|
|
|
|
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
uploadArchives {
|
2017-04-14 21:35:09 +02:00
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
//This is used when the build is done on a slave node
|
|
|
|
if (project.hasProperty('mavenPass')) {
|
|
|
|
println 'Uploading to remote Maven Repo'
|
|
|
|
repository(url: "http://mavenupload.modmuss50.me/") {
|
|
|
|
authentication(userName: "buildslave", password: project.getProperty('mavenPass'))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//this is when the build is executed on the master node
|
|
|
|
println 'Uploading to local Maven Repo'
|
|
|
|
repository(url: "file:///var/www/maven/")
|
|
|
|
}
|
|
|
|
pom {
|
|
|
|
groupId = "TechReborn"
|
|
|
|
version = project.version
|
|
|
|
artifactId = project.archivesBaseName
|
|
|
|
project {
|
|
|
|
name project.archivesBaseName
|
|
|
|
packaging 'jar'
|
|
|
|
description 'TechReborn'
|
|
|
|
url 'https://github.com/TechReborn/TechReborn'
|
|
|
|
scm {
|
|
|
|
url 'https://github.com/TechReborn/TechReborn'
|
|
|
|
connection 'scm:git:git@github.com:TechReborn/TechReborn.git'
|
|
|
|
developerConnection 'scm:git:git@github.com:TechReborn/TechReborn.git'
|
|
|
|
}
|
|
|
|
issueManagement {
|
|
|
|
system 'github'
|
|
|
|
url 'https://github.com/TechReborn/TechReborn/issues'
|
|
|
|
}
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name 'License'
|
|
|
|
url 'https://raw.githubusercontent.com/TechReborn/TechReborn/master/LICENSE.md'
|
|
|
|
distribution 'repo'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id 'modmuss50'
|
|
|
|
name 'modmuss50'
|
|
|
|
roles {role 'developer'}
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id 'Gigabit101'
|
|
|
|
name 'Gigabit101'
|
|
|
|
roles {role 'developer'}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-12 11:56:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2017-04-14 21:35:09 +02:00
|
|
|
//To update the wrapper change the version bellow then run: gradle wrapper
|
|
|
|
gradleVersion = '2.13'
|
2015-10-02 08:48:44 +02:00
|
|
|
}
|
2016-05-06 23:13:24 +02:00
|
|
|
|
|
|
|
//Thanks Matthew from #ForgeGradle https://gist.github.com/matthewprenger/108265e3efc83181bd2cc2d2fc31a853
|
|
|
|
task updateMappings(dependsOn: sourceJar) {
|
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
def remapped = file('src_remapped/main/java')
|
|
|
|
def methods = file('methods.csv')
|
|
|
|
def fields = file('fields.csv')
|
|
|
|
|
|
|
|
doLast {
|
|
|
|
|
|
|
|
Map<String, String> map = new HashMap<>()
|
|
|
|
methods.eachLine {line ->
|
|
|
|
String[] pts = line.split(",")
|
|
|
|
map.put(pts[0], pts[1])
|
|
|
|
}
|
|
|
|
fields.eachLine {line ->
|
|
|
|
String[] pts = line.split(",")
|
|
|
|
map.put(pts[0], pts[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
copy {
|
|
|
|
from zipTree(sourceJar.archivePath)
|
|
|
|
into remapped
|
|
|
|
include '**/*.java'
|
|
|
|
|
|
|
|
filter {javaLine ->
|
|
|
|
map.entrySet().each {entry ->
|
|
|
|
javaLine = javaLine.replace(entry.getKey(), entry.getValue())
|
|
|
|
}
|
|
|
|
return javaLine
|
|
|
|
}
|
|
|
|
|
|
|
|
includeEmptyDirs = false
|
|
|
|
eachFile {println "Processing: $it.name"}
|
|
|
|
}
|
|
|
|
}
|
2016-05-06 23:13:24 +02:00
|
|
|
}
|
2016-11-04 21:03:05 +01:00
|
|
|
|
2017-04-13 11:11:10 +02:00
|
|
|
|
|
|
|
task signJar(type: SignJar, dependsOn: reobfJar) {
|
|
|
|
onlyIf {
|
|
|
|
project.hasProperty('keyStore')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (project.hasProperty('keyStore')) {
|
|
|
|
keyStore = project.keyStore
|
|
|
|
alias = project.keyStoreAlias
|
|
|
|
storePass = project.keyStorePass
|
|
|
|
keyPass = project.keyStoreKeyPass
|
|
|
|
inputFile = jar.archivePath
|
|
|
|
outputFile = jar.archivePath
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn signJar
|
|
|
|
|
2016-11-26 20:05:10 +01:00
|
|
|
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/ideconfig.gradle'
|
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
import groovy.util.XmlSlurper
|
|
|
|
import org.apache.commons.io.FileUtils
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-11 00:39:09 +02:00
|
|
|
task curseTools {
|
2017-04-11 01:21:30 +02:00
|
|
|
doLast {
|
2017-04-14 21:35:09 +02:00
|
|
|
def cacheFiles = new File(".gradle/curseTools")
|
|
|
|
if (!cacheFiles.exists()) {
|
|
|
|
cacheFiles.mkdirs()
|
|
|
|
}
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
def mavenMetadata = new File(cacheFiles, "maven-metadata.xml")
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
logger.lifecycle(":downloading curseTools metadata")
|
|
|
|
FileUtils.copyURLToFile(new URL("http://maven.modmuss50.me/CurseTools/CurseTools/maven-metadata.xml"), mavenMetadata)
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
def metadata = new XmlSlurper().parseText(FileUtils.readFileToString(mavenMetadata))
|
|
|
|
def curseToolsVersion = metadata.versioning.release
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
def curseTools = new File(cacheFiles, "${curseToolsVersion}.jar")
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
logger.lifecycle(":downloading CurseTools")
|
|
|
|
FileUtils.copyURLToFile(new URL("http://maven.modmuss50.me/CurseTools/CurseTools/${curseToolsVersion}/CurseTools-${curseToolsVersion}.jar"), curseTools)
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2017-04-14 21:35:09 +02:00
|
|
|
logger.lifecycle(":launching CurseTools")
|
|
|
|
ant.java(jar: curseTools.getAbsolutePath(), fork: true, spawn: false) {
|
|
|
|
arg(value: jar.archivePath.getAbsolutePath())
|
|
|
|
arg(value: deobfJar.archivePath.getAbsolutePath())
|
|
|
|
arg(value: apiJar.archivePath.getAbsolutePath())
|
|
|
|
}
|
2017-04-11 01:21:30 +02:00
|
|
|
}
|
2017-01-15 16:14:05 +01:00
|
|
|
}
|