2015-04-10 00:17:30 +02:00
|
|
|
buildscript {
|
2017-04-14 21:35:09 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-09-02 14:57:41 +02:00
|
|
|
jcenter()
|
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 {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2018-11-16 17:51:26 +01:00
|
|
|
maven {
|
|
|
|
name = "CB Repo"
|
|
|
|
url = "http://chickenbones.net/maven"
|
|
|
|
}
|
2019-05-26 13:37:59 +02:00
|
|
|
maven {
|
|
|
|
name = "Modmuss50"
|
|
|
|
url = "http://maven.modmuss50.me/"
|
|
|
|
}
|
2017-04-14 21:35:09 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-07-25 15:16:30 +02:00
|
|
|
classpath "net.fabricmc:fabric-loom:0.2.5-SNAPSHOT"
|
2017-04-14 21:35:09 +02:00
|
|
|
classpath "gradle.plugin.net.minecrell:licenser:0.2.1"
|
2018-09-02 14:57:41 +02:00
|
|
|
classpath 'de.undercouch:gradle-download-task:3.4.3'
|
2019-01-12 20:56:42 +01:00
|
|
|
//classpath 'net.covers1624:GradleStuff:1.0-SNAPSHOT'
|
2017-04-14 21:35:09 +02:00
|
|
|
}
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2019-05-26 13:37:59 +02:00
|
|
|
apply plugin: net.fabricmc.loom.LoomGradlePlugin
|
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
|
2018-09-02 14:57:41 +02:00
|
|
|
apply plugin: 'de.undercouch.download'
|
2019-01-12 20:56:42 +01:00
|
|
|
apply plugin: 'idea'
|
2019-02-20 21:12:36 +01:00
|
|
|
apply plugin: 'eclipse'
|
2019-01-12 20:56:42 +01:00
|
|
|
//apply plugin: 'net.covers1624.contained-deps'
|
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
|
|
|
|
|
|
|
repositories {
|
2017-04-14 21:35:09 +02:00
|
|
|
maven {
|
|
|
|
name = "Modmuss50"
|
|
|
|
url = "http://maven.modmuss50.me/"
|
|
|
|
}
|
|
|
|
maven {
|
2018-11-16 16:44:33 +01:00
|
|
|
// JEI
|
|
|
|
name "JEI"
|
2017-04-14 21:35:09 +02:00
|
|
|
url "http://dvs1.progwml6.com/files/maven"
|
|
|
|
}
|
2019-07-10 22:56:22 +02:00
|
|
|
maven {
|
|
|
|
name = 'sponge'
|
|
|
|
url = 'https://repo.spongepowered.org/maven'
|
|
|
|
}
|
2019-07-25 14:14:46 +02:00
|
|
|
maven {
|
|
|
|
name = 'curseforge'
|
|
|
|
url = 'https://minecraft.curseforge.com/api/maven'
|
|
|
|
}
|
2019-08-13 17:24:24 +02:00
|
|
|
maven {
|
|
|
|
url 'https://jitpack.io'
|
|
|
|
}
|
2015-08-27 17:29:13 +02:00
|
|
|
}
|
|
|
|
|
2019-08-13 23:11:45 +02:00
|
|
|
version = "3.0.7"
|
2015-12-30 18:23:45 +01: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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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'
|
|
|
|
|
|
|
|
dependencies {
|
2019-07-22 12:31:24 +02:00
|
|
|
minecraft "com.mojang:minecraft:1.14.4"
|
|
|
|
mappings "net.fabricmc:yarn:1.14.4+build.2"
|
2019-08-13 12:51:44 +02:00
|
|
|
modCompile "net.fabricmc:fabric-loader:0.4.8+build.159"
|
2019-05-27 23:21:58 +02:00
|
|
|
|
2019-07-01 01:24:12 +02:00
|
|
|
//Fabric api
|
2019-08-09 00:35:27 +02:00
|
|
|
modCompile "net.fabricmc.fabric-api:fabric-api:0.3.1+build.208"
|
2019-05-27 23:21:58 +02:00
|
|
|
|
2019-08-12 16:05:49 +02:00
|
|
|
modCompile "io.github.prospector:modmenu:1.7.7+build.116"
|
2019-07-23 22:30:57 +02:00
|
|
|
modCompile "io.github.prospector.silk:SilkAPI:1.2.4-43"
|
2019-08-12 16:05:49 +02:00
|
|
|
modCompile ("me.shedaniel:RoughlyEnoughItems:2.9.7+build.145") {
|
|
|
|
//Thanks for moving the project breaking gradle...
|
|
|
|
exclude group: 'io.github.prospector.modmenu', module: 'ModMenu'
|
|
|
|
}
|
2019-05-27 23:21:58 +02:00
|
|
|
|
2019-08-08 14:47:59 +02:00
|
|
|
def rcVersion = 'RebornCore:RebornCore-1.14.4:+'
|
2019-07-25 15:35:27 +02:00
|
|
|
|
2019-07-25 15:16:30 +02:00
|
|
|
//Hopefully this doesnt break too much eek
|
|
|
|
if(Boolean.parseBoolean(System.getProperty("idea.sync.active", "false"))){
|
2019-07-25 15:35:27 +02:00
|
|
|
compile rcVersion
|
2019-07-25 15:16:30 +02:00
|
|
|
} else {
|
2019-07-25 15:35:27 +02:00
|
|
|
modCompile (rcVersion)
|
2019-07-25 15:16:30 +02:00
|
|
|
}
|
2019-05-27 23:21:58 +02:00
|
|
|
|
2019-08-07 00:42:25 +02:00
|
|
|
//TODO enable this again at somepoint
|
|
|
|
//include rcVersion
|
2019-02-22 16:02:41 +01:00
|
|
|
|
2019-08-07 00:06:55 +02:00
|
|
|
compile 'org.checkerframework:checker-qual:2.10.0'
|
2019-05-26 13:37:59 +02:00
|
|
|
compileOnly "com.google.code.findbugs:jsr305:+"
|
2019-08-13 17:24:24 +02:00
|
|
|
|
|
|
|
modCompile ('com.github.Virtuoel:Towelette:519538e54b') {
|
|
|
|
transitive = false
|
|
|
|
}
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 00:42:25 +02:00
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
2017-04-14 21:35:09 +02:00
|
|
|
|
2019-08-07 00:42:25 +02:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include "fabric.mod.json"
|
|
|
|
expand "version": project.version
|
|
|
|
}
|
2017-06-20 19:54:45 +02:00
|
|
|
|
2019-08-07 00:42:25 +02:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude "fabric.mod.json"
|
|
|
|
}
|
2019-01-12 20:56:42 +01:00
|
|
|
}
|
2015-07-01 17:53:03 +02:00
|
|
|
|
2015-04-10 00:17:30 +02:00
|
|
|
jar {
|
2017-04-14 21:35:09 +02:00
|
|
|
exclude "**/*.psd"
|
|
|
|
classifier = 'universal'
|
2018-08-30 23:47:25 +02:00
|
|
|
|
|
|
|
from { crowdin.getDidWork() ? fileTree('build/translations').matching{exclude "**/en_US.lang"} : null}
|
|
|
|
dependsOn 'renameCrowdin'
|
2015-04-10 00:17:30 +02:00
|
|
|
}
|
|
|
|
|
2015-11-22 17:24:50 +01:00
|
|
|
|
2018-08-31 16:29:59 +02:00
|
|
|
//Triggers crowdin to export the latest translations
|
|
|
|
task crowdinExport() {
|
|
|
|
onlyIf {
|
2018-08-31 17:00:31 +02:00
|
|
|
project.hasProperty('crowdinKey')
|
2018-08-31 16:29:59 +02:00
|
|
|
}
|
|
|
|
doLast{
|
|
|
|
def apiKey = project.crowdinKey
|
|
|
|
def projectId = 'techreborn'
|
2018-08-31 17:00:31 +02:00
|
|
|
def response = new URL(sprintf('https://api.crowdin.com/api/project/%1$s/export?key=%2$s', [projectId, apiKey])).text
|
|
|
|
def metadata = new XmlParser().parseText(response)
|
|
|
|
project.logger.lifecycle("crowdin export status: " + metadata.@status)
|
2018-08-31 16:29:59 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-30 23:47:25 +02:00
|
|
|
|
2018-09-02 14:57:41 +02:00
|
|
|
|
|
|
|
task crowdin(type: Download, dependsOn: 'crowdinExport'){
|
|
|
|
src 'https://crowdin.com/backend/download/project/techreborn.zip'
|
|
|
|
dest file("build/translations.zip")
|
|
|
|
overwrite true
|
|
|
|
}
|
|
|
|
|
|
|
|
task cleanCrowdin(type: Delete){
|
|
|
|
delete 'build/translations'
|
2018-08-30 23:47:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Renames the translation files to be all lower case
|
2018-09-02 14:57:41 +02:00
|
|
|
task renameCrowdin(type: Copy, dependsOn: ['crowdin', 'cleanCrowdin']){
|
2018-08-30 23:47:25 +02:00
|
|
|
mustRunAfter 'crowdin'
|
2018-09-02 14:57:41 +02:00
|
|
|
from zipTree(file("build/translations.zip"))
|
|
|
|
into file('build/translations')
|
2018-08-30 23:47:25 +02:00
|
|
|
rename {
|
|
|
|
String filename -> return filename.toLowerCase()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-25 15:16:30 +02:00
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier = "sources"
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
2019-03-01 22:24:26 +01:00
|
|
|
|
2018-02-19 15:12:08 +01:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
|
|
|
groupId 'TechReborn'
|
|
|
|
artifactId project.archivesBaseName
|
|
|
|
version project.version
|
2016-05-26 18:31:02 +02:00
|
|
|
|
2019-07-25 15:16:30 +02:00
|
|
|
artifact(remapJar) {
|
|
|
|
builtBy remapJar
|
|
|
|
}
|
|
|
|
artifact(sourcesJar) {
|
|
|
|
builtBy remapSourcesJar
|
|
|
|
}
|
2018-02-19 15:12:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://mavenupload.modmuss50.me/"
|
2018-02-19 16:01:37 +01:00
|
|
|
if (project.hasProperty('mavenPass')) {
|
|
|
|
credentials {
|
|
|
|
username 'buildslave'
|
|
|
|
password project.getProperty('mavenPass')
|
|
|
|
}
|
2017-04-14 21:35:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-12 11:56:23 +02:00
|
|
|
}
|
|
|
|
|
2019-01-12 20:56:42 +01:00
|
|
|
// apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/ideconfig.gradle'
|
2016-11-26 20:05:10 +01:00
|
|
|
|
2018-04-02 11:42:02 +02:00
|
|
|
import com.google.gson.JsonArray
|
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
|
|
|
|
2019-05-26 13:37:59 +02:00
|
|
|
import java.util.function.Consumer
|
|
|
|
|
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) {
|
2019-07-25 15:16:30 +02:00
|
|
|
arg(value: remapJar.archivePath.getAbsolutePath())
|
2017-04-14 21:35:09 +02:00
|
|
|
}
|
2017-04-11 01:21:30 +02:00
|
|
|
}
|
2017-01-15 16:14:05 +01:00
|
|
|
}
|