buildscript { dependencies { classpath 'org.kohsuke:github-api:1.114' } } plugins { id 'java' id 'java-library' id 'idea' id 'eclipse' id 'maven-publish' id "org.cadixdev.licenser" version "0.6.1" id "fabric-loom" version "0.9-SNAPSHOT" id "com.matthewprenger.cursegradle" version "1.4.0" id "de.undercouch.download" version "4.1.1" } repositories { maven { name = "Modmuss50" url = "https://maven.modmuss50.me/" } maven { name = "BuildCraft" url = "https://mod-buildcraft.com/maven" content { includeGroup "alexiil.mc.lib" } } maven { url = "https://www.cursemaven.com" content { includeGroup "curse.maven" } } maven { url = "https://maven.oskarstrom.net" content { includeGroup "net.oskarstrom" } } maven { url "https://maven.shedaniel.me/" } maven { url = "https://jitpack.io" content { includeGroup "com.github.dexman545" includeGroup "com.github.emilyploszaj" includeGroup "io.github.onyxstudios.Cardinal-Components-API" } } } configurations { shade compile.extendsFrom shade } def ENV = System.getenv() license { header file('HEADER') include '**/*.java' ignoreFailures = true //Stops the build from failing if a file does not have a license header } group = 'TechReborn' allprojects { version = "5.0.3-beta" def build_number = ENV.BUILD_NUMBER ?: "local" version = "${version}+build.$build_number" apply plugin: "fabric-loom" apply plugin: "maven-publish" sourceCompatibility = JavaVersion.VERSION_16 targetCompatibility = JavaVersion.VERSION_16 configurations { dev } // Shared deps between TR and RC dependencies { minecraft "com.mojang:minecraft:1.17.1" mappings "net.fabricmc:yarn:1.17.1+build.23:v2" modImplementation "net.fabricmc:fabric-loader:0.11.6" //Fabric api modImplementation "net.fabricmc.fabric-api:fabric-api:0.37.0+1.17" include(modApi('teamreborn:energy:0.1.1')) } processResources { inputs.property "version", project.version filesMatching("fabric.mod.json") { expand "version": project.version } } tasks.withType(JavaCompile).configureEach { it.options.encoding = "UTF-8" it.options.release = 16 } java { withSourcesJar() } publishing { publications { maven(MavenPublication) { groupId project.name artifactId project.archivesBaseName + "-" + getBranch() version project.version artifact(remapJar) { builtBy remapJar } artifact(sourcesJar) { builtBy remapSourcesJar } } } repositories { if (ENV.MAVEN_URL) { maven { url ENV.MAVEN_URL credentials { username ENV.MAVEN_USERNAME password ENV.MAVEN_PASSWORD } } } } } } // TechReborn sepecific deps dependencies { api project(":RebornCore") include project(":RebornCore") optionalDependency "me.shedaniel:RoughlyEnoughItems-fabric:6.0.264-alpha" disabledOptionalDependency ('com.github.emilyploszaj:trinkets:2.6.7') disabledOptionalDependency "com.github.dexman545:autoswitch-api:-SNAPSHOT" disabledOptionalDependency 'net.oskarstrom:DashLoader:2.0' } def optionalDependency(String dep) { dependencies.modRuntime (dep) { exclude group: "net.fabricmc.fabric-api" exclude module: "nbt-crafting" } dependencies.modCompileOnly (dep) { exclude group: "net.fabricmc.fabric-api" exclude module: "nbt-crafting" } } def disabledOptionalDependency(String dep) { dependencies.modCompileOnly (dep) { exclude group: "net.fabricmc.fabric-api" exclude module: "nbt-crafting" } } jar { exclude "**/*.psd" classifier = 'universal' from { crowdin.getDidWork() ? fileTree('build/translations').matching{exclude "**/en_US.json"} : null} dependsOn 'fixTranslations' dependsOn 'compileRecipes' } //Triggers crowdin to export the latest translations task crowdinExport() { onlyIf { ENV.CROWDIN_KEY } doLast{ def apiKey = ENV.CROWDIN_KEY def projectId = 'techreborn' 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) } } 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' } //Renames the translation files to be all lower case task renameCrowdin(type: Copy, dependsOn: ['crowdin', 'cleanCrowdin']){ mustRunAfter 'crowdin' from zipTree(file("build/translations.zip")) into file('build/translations') rename { String filename -> return filename.toLowerCase() } doFirst { file('build/translations').deleteDir() } } import groovy.json.JsonSlurper import groovy.json.JsonOutput //Remove all translations that do not have an entry, ensures that minecraft falls back to EN_US over writing out an empty string. task fixTranslations(dependsOn: ['renameCrowdin']) { def jsonSlurper = new JsonSlurper() doLast { file('build/translations').eachFileRecurse(groovy.io.FileType.FILES) { if(it.name.endsWith(".json")) { def lang = jsonSlurper.parseText(it.text) lang.values().removeIf { val -> val.empty} it.text = JsonOutput.prettyPrint(JsonOutput.toJson(lang)) } } } } import com.google.gson.JsonArray import groovy.util.XmlSlurper import org.apache.commons.io.FileUtils import java.util.function.Consumer curseforge { if (ENV.CURSEFORGE_API_KEY) { apiKey = ENV.CURSEFORGE_API_KEY } project { id = "233564" changelog = ENV.CHANGELOG ?: "No changelog provided" releaseType = ENV.RELEASE_CHANNEL ?: "release" addGameVersion "1.17.1" // Also update in RebornCore/build.gradle addGameVersion "Fabric" mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) relations { requiredDependency 'reborncore' } afterEvaluate { uploadTask.dependsOn("remapJar") } } options { forgeGradleIntegration = false } } def getBranch() { def ENV = System.getenv() if (ENV.GITHUB_REF) { def branch = ENV.GITHUB_REF return branch.substring(branch.lastIndexOf("/") + 1) } return "unknown" } import org.kohsuke.github.GHReleaseBuilder import org.kohsuke.github.GitHub task github(dependsOn: remapJar) { onlyIf { ENV.GITHUB_TOKEN } doLast { def github = GitHub.connectUsingOAuth(ENV.GITHUB_TOKEN as String) def repository = github.getRepository(ENV.GITHUB_REPOSITORY) def releaseBuilder = new GHReleaseBuilder(repository, version as String) releaseBuilder.name("${archivesBaseName}-${version}") releaseBuilder.body(ENV.CHANGELOG) releaseBuilder.commitish(getBranch()) def ghRelease = releaseBuilder.create() ghRelease.uploadAsset(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar"), "application/java-archive") ghRelease.uploadAsset(file("RebornCore/build/libs/RebornCore-${version}.jar"), "application/java-archive") } } github.dependsOn(project(":RebornCore").getTasks().getByName("remapJar")) // Generate recipe JSON for similar recipes task compileRecipes { def jsonSlurper = new JsonSlurper() def recipePath = "build/resources/main/data/techreborn/recipes" def smeltingPath = recipePath + "/smelting" def blastingPath = recipePath + "/blasting" doLast { // Add any recipe filenames that don't match the regex here String[] whitelist = [] def pattern = ~'^\\w+_(ingot(_from_dust)?)\\.json$' file(smeltingPath).eachFileRecurse(groovy.io.FileType.FILES) { if (whitelist.contains(it.name) || it.name ==~ pattern) { def recipe = jsonSlurper.parseText(it.text) // Final failsafe if (["smelting", "minecraft:smelting"].contains(recipe.type)) { recipe.type = "minecraft:blasting" recipe.cookingtime = recipe.cookingtime / 2 File output = file(new File(blastingPath, it.name)) output.write(JsonOutput.prettyPrint(JsonOutput.toJson(recipe))) } } } } } // A task to ensure that the version being released has not already been released. task checkVersion { doFirst { def xml = new URL("https://maven.modmuss50.me/TechReborn/TechReborn-1.17/maven-metadata.xml").text def metadata = new XmlSlurper().parseText(xml) def versions = metadata.versioning.versions.version*.text(); if (versions.contains(version)) { throw new RuntimeException("${version} has already been released!") } } } github.mustRunAfter checkVersion publish.mustRunAfter checkVersion project.tasks.curseforge.mustRunAfter checkVersion