yarn/build.gradle

739 lines
19 KiB
Groovy
Raw Normal View History

2016-08-17 15:23:28 -04:00
buildscript {
repositories {
jcenter()
maven {
2019-06-28 17:55:20 -04:00
name "Fabric Repository"
url 'https://maven.fabricmc.net'
}
}
dependencies {
2020-03-20 18:57:01 -04:00
classpath "cuchaz:enigma:0.15.153"
2020-02-14 13:28:16 -05:00
classpath "net.fabricmc:stitch:0.4.3.71"
2019-06-13 03:39:42 -04:00
classpath "commons-io:commons-io:2.6"
classpath "com.google.guava:guava:28.0-jre"
2020-03-04 15:22:46 -05:00
classpath 'de.undercouch:gradle-download-task:4.0.2'
classpath 'net.fabricmc:tiny-remapper:0.2.1.63'
}
2016-08-17 15:23:28 -04:00
}
plugins {
id 'de.undercouch.download' version '3.4.3'
id 'base'
id 'maven-publish'
}
2020-04-02 13:40:17 -04:00
def minecraft_version = "20w14a"
2016-09-09 08:47:32 -04:00
def ENV = System.getenv()
// Fetch build number from Jenkins
def build_number = ENV.BUILD_NUMBER ?: "local"
2019-04-10 12:20:44 -04:00
def yarnVersion = "${minecraft_version}+build.$build_number"
2016-09-09 08:47:32 -04:00
repositories {
mavenCentral()
maven {
2019-06-28 17:55:20 -04:00
name "Fabric Repository"
url 'https://maven.fabricmc.net'
}
}
configurations {
enigmaRuntime {
resolutionStrategy {
cacheDynamicVersionsFor 0, "seconds"
cacheChangingModulesFor 0, "seconds"
}
}
}
dependencies {
2020-02-14 13:28:16 -05:00
enigmaRuntime "net.fabricmc:stitch:0.4.3.71"
2020-03-20 18:57:01 -04:00
enigmaRuntime "cuchaz:enigma:0.15.153"
}
def setupGroup = "jar setup"
def yarnGroup = "yarn"
def buildMappingGroup = "mapping build"
def mapJarGroup = "jar mapping"
def mappingsDir = file("mappings")
def cacheFilesMinecraft = file(".gradle/minecraft")
2018-10-31 09:05:19 -04:00
def tempDir = file(".gradle/temp")
def mergedFile = file("${minecraft_version}-merged.jar")
def intermediaryJar = file("${minecraft_version}-intermediary.jar")
def yarnJar = file("${minecraft_version}-yarn.jar")
def namedJar = file("${minecraft_version}-named.jar")
def versionFile = new File(cacheFilesMinecraft, "${minecraft_version}.json")
def clientJar = new File(cacheFilesMinecraft, "${minecraft_version}-client.jar")
def serverJar = new File(cacheFilesMinecraft, "${minecraft_version}-server.jar")
2019-06-28 17:55:20 -04:00
def libraries = new File(cacheFilesMinecraft, "libraries")
2018-10-30 07:29:43 -04:00
def libs = new File("build/libs/")
2019-11-07 06:38:33 -05:00
import com.google.common.hash.Hashing
import com.google.common.collect.Iterables
import cuchaz.enigma.command.CheckMappingsCommand
2019-06-28 17:55:20 -04:00
import cuchaz.enigma.command.ComposeMappingsCommand
import cuchaz.enigma.command.ConvertMappingsCommand
import cuchaz.enigma.command.MapSpecializedMethodsCommand
import groovy.io.FileType
import groovy.json.JsonSlurper
import net.fabricmc.stitch.commands.CommandMergeTiny
import net.fabricmc.stitch.commands.CommandProposeFieldNames
import net.fabricmc.stitch.commands.CommandReorderTiny
2019-04-18 17:22:36 -04:00
import net.fabricmc.stitch.commands.CommandRewriteIntermediary
2019-11-07 06:38:33 -05:00
import net.fabricmc.stitch.commands.tinyv2.CommandProposeV2FieldNames
import net.fabricmc.stitch.commands.tinyv2.CommandMergeTinyV2
import net.fabricmc.stitch.commands.tinyv2.CommandReorderTinyV2
import net.fabricmc.stitch.merge.JarMerger
import net.fabricmc.tinyremapper.OutputConsumerPath
import net.fabricmc.tinyremapper.TinyRemapper
import net.fabricmc.tinyremapper.TinyUtils
import org.apache.commons.io.FileUtils
import java.nio.charset.StandardCharsets
2019-11-07 06:38:33 -05:00
import java.nio.file.FileSystems
import java.nio.file.Files
import java.nio.file.Path
import java.util.zip.GZIPOutputStream
2016-08-17 15:23:28 -04:00
boolean validateChecksum(File file, String checksum) {
if (file != null) {
2019-11-07 06:38:33 -05:00
def hash = com.google.common.io.Files.asByteSource(file).hash(Hashing.sha1())
2016-08-17 15:23:28 -04:00
def builder = new StringBuilder()
hash.asBytes().each {
builder.append(Integer.toString((it & 0xFF) + 0x100, 16).substring(1))
}
return builder.toString().equals(checksum)
}
return false
}
task downloadVersionsManifest {
group = setupGroup
//inputs.property "mc_ver", minecraft_version
inputs.property "currenttime", new Date()
def manifestFile = new File(cacheFilesMinecraft, "version_manifest.json")
outputs.file(manifestFile)
doLast {
logger.lifecycle(":downloading minecraft versions manifest")
FileUtils.copyURLToFile(new URL("https://launchermeta.mojang.com/mc/game/version_manifest.json"), manifestFile)
}
}
def getManifestVersion(File manifestFile, String minecraft_version) {
def manifest = manifestFile.exists() ? new JsonSlurper().parseText(FileUtils.readFileToString(manifestFile)) : null
2019-11-07 06:38:33 -05:00
return manifest != null ? manifest.versions.stream().filter({
it.id.equals(minecraft_version)
}).findFirst() : java.util.Optional.empty()
}
task downloadWantedVersionManifest(dependsOn: downloadVersionsManifest) {
group = setupGroup
def manifestFile = downloadVersionsManifest.outputs.files.singleFile
def manifestVersion = getManifestVersion(manifestFile, minecraft_version)
//have to grab the release time as there's a current timestamp on each element?!
inputs.property "releaseTime", manifestVersion.isPresent() ? manifestVersion.get().releaseTime : -1
outputs.file versionFile
doLast {
2019-11-07 06:38:33 -05:00
manifestVersion = getManifestVersion(manifestFile, minecraft_version)
//nb need to re-read here in case it didn't exist before
if (manifestVersion.isPresent() || versionFile.exists()) {
if (manifestVersion.isPresent()) {
FileUtils.copyURLToFile(new URL(manifestVersion.get().url), versionFile)
}
} else {
throw new RuntimeException("No version data for Minecraft version ${minecraft_version}")
}
}
}
2016-08-17 15:23:28 -04:00
task downloadMcJars(dependsOn: downloadWantedVersionManifest) {
group = setupGroup
inputs.files versionFile
2016-08-17 15:23:28 -04:00
outputs.files(clientJar, serverJar)
2016-08-17 15:23:28 -04:00
outputs.upToDateWhen {
2016-08-17 15:23:28 -04:00
def version = new JsonSlurper().parseText(FileUtils.readFileToString(versionFile))
return clientJar.exists() && serverJar.exists() && validateChecksum(clientJar, version.downloads.client.sha1) && validateChecksum(serverJar, version.downloads.server.sha1)
}
doLast {
if (!versionFile.exists()) {
throw new RuntimeException("Can't download the jars without the ${versionFile.name} file!")
}
2016-08-17 15:23:28 -04:00
//reload in case it changed
def version = new JsonSlurper().parseText(FileUtils.readFileToString(versionFile))
logger.lifecycle(":downloading minecraft jars")
2016-08-17 15:23:28 -04:00
download {
src new URL(version.downloads.client.url)
dest clientJar
overwrite false
2016-08-17 15:23:28 -04:00
}
download {
src new URL(version.downloads.server.url)
dest serverJar
overwrite false
2016-08-17 15:23:28 -04:00
}
}
}
task downloadIntermediary(type: Download) {
2019-06-28 17:55:20 -04:00
group = buildMappingGroup
def url = "https://github.com/FabricMC/intermediary/raw/master/mappings/${minecraft_version}.tiny"
2019-11-07 13:15:42 -05:00
src com.google.common.net.UrlEscapers.urlFragmentEscaper().escape(url)
dest new File(cacheFilesMinecraft, "${minecraft_version}-intermediary.tiny")
2019-06-28 17:55:20 -04:00
}
task downloadIntermediaryV2(type: Download) {
group = buildMappingGroup
def url = "https://maven.fabricmc.net/net/fabricmc/intermediary/${minecraft_version}/intermediary-${minecraft_version}-v2.jar"
src com.google.common.net.UrlEscapers.urlFragmentEscaper().escape(url)
dest new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.jar")
}
task extractIntermediaryV2(dependsOn: downloadIntermediaryV2, type: Copy) {
def output = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.tiny")
from({ zipTree(downloadIntermediaryV2.dest) }) {
include 'mappings/mappings.tiny'
rename 'mappings.tiny', "../${output.name}"
}
into output.parentFile
}
task mergeJars(dependsOn: downloadMcJars) {
group = setupGroup
inputs.files downloadMcJars.outputs.files.files
outputs.file(mergedFile)
2016-08-17 15:23:28 -04:00
doLast {
logger.lifecycle(":merging jars")
2019-11-07 06:38:33 -05:00
def client = inputs.files.files.find { it.name.endsWith("-client.jar") }
def server = inputs.files.files.find { it.name.endsWith("-server.jar") }
2018-12-22 06:56:35 -05:00
def merged = mergedFile
2016-08-17 15:23:28 -04:00
2019-11-07 06:38:33 -05:00
if (merged.exists()) {
2019-01-16 13:37:56 -05:00
return
}
2016-08-17 15:23:28 -04:00
def jarMerger = new JarMerger(client, server, merged)
jarMerger.merge()
jarMerger.close()
}
}
2019-06-28 17:55:20 -04:00
task downloadMcLibs(dependsOn: downloadWantedVersionManifest) {
group = setupGroup
inputs.files versionFile
2019-07-02 17:36:55 -04:00
outputs.dir(libraries)
2019-06-28 17:55:20 -04:00
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2016-08-17 15:23:28 -04:00
doLast {
2019-06-28 17:55:20 -04:00
if (!versionFile.exists()) {
throw new RuntimeException("Can't download the jars without the ${versionFile.name} file!")
}
def version = new JsonSlurper().parseText(FileUtils.readFileToString(versionFile, StandardCharsets.UTF_8))
2019-06-28 17:55:20 -04:00
logger.lifecycle(":downloading minecraft libraries")
if (!libraries.exists()) {
libraries.mkdirs()
}
version.libraries.each {
def downloadUrl = it.downloads.artifact.url
download {
src downloadUrl
dest new File(libraries, downloadUrl.substring(downloadUrl.lastIndexOf("/") + 1))
overwrite false
}
}
2016-08-17 15:23:28 -04:00
}
}
2016-09-08 18:42:45 -04:00
task invertIntermediary(dependsOn: downloadIntermediary, type: FileOutput) {
group = buildMappingGroup
def v1Input = downloadIntermediary.dest
2016-09-21 08:52:54 -04:00
2019-11-07 06:38:33 -05:00
output = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-inverted.tiny")
outputs.file(output)
2019-06-28 17:55:20 -04:00
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2019-06-28 17:55:20 -04:00
doLast {
logger.lifecycle(":building inverted intermediary")
2019-11-07 06:38:33 -05:00
String[] v1Args = [
v1Input.getAbsolutePath(),
output.getAbsolutePath(),
"intermediary", "official"
]
2019-11-07 06:38:33 -05:00
new CommandReorderTiny().run(v1Args)
}
}
task invertIntermediaryv2(dependsOn: extractIntermediaryV2, type: FileOutput) {
group = buildMappingGroup
def v2Input = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.tiny")
output = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-inverted-v2.tiny")
outputs.file(output)
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":building inverted intermediary v2")
String[] v2Args = [
v2Input.getAbsolutePath(),
output.getAbsolutePath(),
"intermediary", "official"
]
new CommandReorderTinyV2().run(v2Args)
}
}
task patchIntermediary(dependsOn: [mergeJars, downloadIntermediary]) {
group = buildMappingGroup
def intermediaryTinyInput = downloadIntermediary.outputs.files.singleFile
2019-04-18 17:22:36 -04:00
def outputFile = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-full.tiny")
outputs.file(outputFile)
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2019-04-18 17:22:36 -04:00
doLast {
logger.lifecycle(":patching intermediary")
String[] args = [
2019-11-07 06:38:33 -05:00
mergedFile.getAbsolutePath(),
intermediaryTinyInput.getAbsolutePath(),
outputFile.getAbsolutePath(),
"--writeAll"
2019-04-18 17:22:36 -04:00
]
new CommandRewriteIntermediary().run(args)
}
}
task mapIntermediaryJar(dependsOn: [downloadMcLibs, downloadIntermediary, mergeJars]) {
2019-06-28 17:55:20 -04:00
group = mapJarGroup
inputs.files downloadMcLibs.outputs.files.files
outputs.file(intermediaryJar)
//Force the task to always run
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2019-06-28 17:55:20 -04:00
doLast {
logger.lifecycle(":mapping minecraft to intermediary")
def tinyInput = downloadIntermediary.dest
2019-06-28 17:55:20 -04:00
mapJar(intermediaryJar, mergedFile, tinyInput, libraries, "official", "intermediary")
}
}
task setupYarn(dependsOn: mapIntermediaryJar) {
group = yarnGroup
}
task yarn(dependsOn: setupYarn) {
group = yarnGroup
doLast {
ant.setLifecycleLogLevel "WARN"
ant.java(
2019-11-07 06:38:33 -05:00
classname: 'cuchaz.enigma.Main',
classpath: configurations.enigmaRuntime.asPath,
fork: true,
spawn: true
2019-06-28 17:55:20 -04:00
) {
jvmarg(value: "-Xmx2048m")
arg(value: '-jar')
arg(value: intermediaryJar.getAbsolutePath())
arg(value: '-mappings')
arg(value: mappingsDir.getAbsolutePath())
arg(value: '-profile')
arg(value: 'enigma_profile.json')
}
}
}
task checkMappings {
group = buildMappingGroup
inputs.dir mappingsDir
doLast {
logger.lifecycle(":checking mappings")
String[] args = [
2019-11-07 06:38:33 -05:00
mergedFile.getAbsolutePath(),
mappingsDir.getAbsolutePath()
2019-06-28 17:55:20 -04:00
]
new CheckMappingsCommand().run(args)
}
}
task buildYarnTiny(dependsOn: mapIntermediaryJar, type: WithV2FileOutput) {
group = buildMappingGroup
inputs.dir mappingsDir
if (!libs.exists()) {
libs.mkdirs()
}
2018-10-31 09:05:19 -04:00
2019-11-07 06:38:33 -05:00
v1Output = new File(tempDir, "yarn-mappings.tiny")
v2Output = new File(tempDir, "yarn-mappings-v2.tiny")
outputs.upToDateWhen { false }
2018-10-31 09:05:19 -04:00
doLast {
logger.lifecycle(":generating tiny mappings")
new MapSpecializedMethodsCommand().run(
intermediaryJar.getAbsolutePath(),
"enigma",
mappingsDir.getAbsolutePath(),
"tinyv2:intermediary:named",
v2Output.getAbsolutePath()
)
new ConvertMappingsCommand().run(
"tinyv2",
v2Output.getAbsolutePath(),
"tiny:intermediary:named",
v1Output.getAbsolutePath())
2018-10-31 09:05:19 -04:00
}
}
2019-06-28 17:55:20 -04:00
task mergeTiny(dependsOn: ["buildYarnTiny", "invertIntermediary"], type: FileOutput) {
group = buildMappingGroup
2019-11-07 06:38:33 -05:00
def yarnTinyInput = buildYarnTiny.v1Output
def intermediaryTinyInput = invertIntermediary.output
2018-10-31 09:05:19 -04:00
def unorderedResultMappings = new File(tempDir, "mappings-unordered.tiny")
2019-11-07 06:38:33 -05:00
output = new File(tempDir, "mappings.tiny")
outputs.file(output)
2018-10-31 09:05:19 -04:00
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2018-10-31 09:05:19 -04:00
doLast {
2018-12-09 16:14:34 -05:00
logger.lifecycle(":merging yarn and intermediary")
2018-10-31 09:05:19 -04:00
String[] args = [
2019-11-07 06:38:33 -05:00
intermediaryTinyInput.getAbsolutePath(),
yarnTinyInput.getAbsolutePath(),
unorderedResultMappings.getAbsolutePath(),
"intermediary",
"official"
2018-10-31 09:05:19 -04:00
]
new CommandMergeTiny().run(args)
logger.lifecycle(":reordering merged intermediary")
String[] args2 = [
2019-11-07 06:38:33 -05:00
unorderedResultMappings.getAbsolutePath(),
output.getAbsolutePath(),
"official", "intermediary", "named"
]
new CommandReorderTiny().run(args2)
2018-10-31 09:05:19 -04:00
}
}
2019-11-07 06:38:33 -05:00
task tinyJar(type: Jar, dependsOn: mergeTiny) {
group = buildMappingGroup
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
archiveFileName = "yarn-${yarnVersion}.jar"
destinationDirectory.set(file("build/libs"))
2018-11-02 12:02:21 -04:00
classifier = ""
2019-11-07 06:38:33 -05:00
from(mergeTiny.output) {
2018-11-02 11:07:46 -04:00
rename { "mappings/mappings.tiny" }
}
}
2019-11-07 06:38:33 -05:00
task compressTiny(dependsOn: [tinyJar, mergeTiny], type: FileOutput) {
group = buildMappingGroup
2018-12-09 16:14:34 -05:00
def outputFile = new File(libs, "yarn-tiny-${yarnVersion}.gz")
2018-10-31 09:05:19 -04:00
outputs.file(outputFile)
2019-11-07 06:38:33 -05:00
output = outputFile
2018-10-31 09:05:19 -04:00
2019-11-07 06:38:33 -05:00
def inputFile = mergeTiny.output
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2018-10-31 09:05:19 -04:00
doLast {
logger.lifecycle(":compressing tiny mappings")
def buffer = new byte[1024]
def fileOutputStream = new FileOutputStream(outputFile)
def outputStream = new GZIPOutputStream(fileOutputStream)
def fileInputStream = new FileInputStream(inputFile)
def length
while ((length = fileInputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length)
}
fileInputStream.close()
outputStream.finish()
outputStream.close()
}
}
2016-09-21 08:52:54 -04:00
2018-11-02 12:17:55 -04:00
clean.doFirst {
delete tempDir, cacheFilesMinecraft
}
tasks.build.dependsOn "compressTiny","tinyJar","v2UnmergedYarnJar", "v2MergedYarnJar"
2019-11-07 06:38:33 -05:00
task mapYarnJar(dependsOn: [compressTiny, mapIntermediaryJar]) {
2019-06-28 17:55:20 -04:00
group = mapJarGroup
inputs.files downloadMcLibs.outputs.files.files
outputs.file(yarnJar)
2016-09-21 08:52:54 -04:00
2019-06-28 17:55:20 -04:00
//Force the task to always run
2019-11-07 06:38:33 -05:00
outputs.upToDateWhen { false }
2016-09-21 08:52:54 -04:00
doLast {
2019-06-28 17:55:20 -04:00
logger.lifecycle(":mapping minecraft to yarn")
2019-11-07 06:38:33 -05:00
File tinyInput = compressTiny.output
2019-06-28 17:55:20 -04:00
mapJar(yarnJar, intermediaryJar, tinyInput, libraries, "intermediary", "named")
}
2016-09-21 08:52:54 -04:00
}
task exportMappingsOfficial(dependsOn: downloadIntermediary) {
def composeInput = downloadIntermediary.dest
2018-10-27 10:37:37 -04:00
doLast {
2019-06-28 17:55:20 -04:00
logger.lifecycle(":exporting mappings")
String[] args = [
2019-11-07 06:38:33 -05:00
"tiny",
composeInput.getAbsolutePath(),
"enigma",
file("mappings/").getAbsolutePath(),
"enigma",
file("mappings_official/").getAbsolutePath(),
"right"
2019-06-28 17:55:20 -04:00
]
new ComposeMappingsCommand().run(args)
}
}
2019-11-07 06:38:33 -05:00
task importMappingsOfficial(dependsOn: invertIntermediary) {
def composeInput = invertIntermediary.output
doLast {
2019-06-28 17:55:20 -04:00
logger.lifecycle(":importing mappings")
String[] args = [
2019-11-07 06:38:33 -05:00
"tiny",
composeInput.getAbsolutePath(),
"enigma",
file("mappings_official/").getAbsolutePath(),
"enigma",
file("mappings/").getAbsolutePath(),
"right"
2019-06-28 17:55:20 -04:00
]
2019-06-28 17:55:20 -04:00
new ComposeMappingsCommand().run(args)
}
}
2018-10-30 07:29:43 -04:00
task buildTinyWithEnum(dependsOn: "mergeTiny", type: FileOutput) {
group = buildMappingGroup
2019-11-07 06:38:33 -05:00
def noEnum = mergeTiny.output
output = new File(tempDir, "named-with-enum.tiny")
2019-11-07 06:38:33 -05:00
outputs.file(output)
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":seeking auto-mappable fields")
String[] argsPropose = [
2019-11-07 06:38:33 -05:00
mergedFile.getAbsolutePath(), // must use official jar
noEnum.getAbsolutePath(),
output.getAbsolutePath()
]
new CommandProposeFieldNames().run(argsPropose)
}
}
task mapNamedJar(dependsOn: [buildTinyWithEnum, mapIntermediaryJar]) {
group = mapJarGroup
inputs.files downloadMcLibs.outputs.files.files
outputs.file(namedJar)
//Force the task to always run
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":mapping minecraft to named")
2019-11-07 06:38:33 -05:00
mapJar(namedJar, intermediaryJar, buildTinyWithEnum.output, libraries, "intermediary", "named")
}
}
task insertAutoGeneratedEnumMappings(dependsOn : [buildYarnTiny,mapIntermediaryJar], type : FileOutput){
group = buildMappingGroup
def noEnumV2 = buildYarnTiny.v2Output
output = new File(tempDir, "unmerged-named-v2-with-enum.tiny")
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":seeking auto-mappable fields for unmerged mappings")
String[] argsProposeV2 = [
intermediaryJar.getAbsolutePath(), // must use intermediary jar
noEnumV2.getAbsolutePath(),
output.getAbsolutePath(),
"false" // don't replace existing names right now
2019-11-07 06:38:33 -05:00
]
new CommandProposeV2FieldNames().run(argsProposeV2)
}
}
task mergeV2(dependsOn: ["v2UnmergedYarnJar", "invertIntermediaryv2"], type: FileOutput) {
def mergedV2 = new File(tempDir, "merged-v2.tiny");
output = new File(tempDir, "merged-reordered-v2.tiny")
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":merging yarn and intermediary v2")
String[] args = [
invertIntermediaryv2.output.getAbsolutePath(),
insertAutoGeneratedEnumMappings.output.getAbsolutePath(),
mergedV2.getAbsolutePath(),
"intermediary",
"official"
]
new CommandMergeTinyV2().run(args)
//Reorder the mappings to match the output of loom
args = [
mergedV2.getAbsolutePath(),
output.getAbsolutePath(),
"official",
"intermediary",
"named"
]
new CommandReorderTinyV2().run(args)
}
}
2019-11-07 06:38:33 -05:00
task v2UnmergedYarnJar(dependsOn: insertAutoGeneratedEnumMappings, type: Jar) {
def mappings = insertAutoGeneratedEnumMappings.output
group = "mapping build"
outputs.upToDateWhen { false }
archiveFileName = "yarn-${yarnVersion}-v2.jar"
2019-11-07 06:38:33 -05:00
from(file(mappings)) {
rename mappings.name, "mappings/mappings.tiny"
}
destinationDirectory.set(file("build/libs"))
}
task v2MergedYarnJar(dependsOn: ["mergeV2"], type: Jar) {
def mappings = mergeV2.output
group = "mapping build"
outputs.upToDateWhen { false }
archiveFileName = "yarn-${yarnVersion}-mergedv2.jar"
from(file(mappings)) {
rename mappings.name, "mappings/mappings.tiny"
}
destinationDirectory.set(file("build/libs"))
}
2018-10-30 07:29:43 -04:00
publishing {
publications {
maven(MavenPublication) {
groupId 'net.fabricmc'
2018-12-09 16:14:34 -05:00
artifactId "yarn"
version yarnVersion
2018-10-30 07:29:43 -04:00
2019-11-07 06:38:33 -05:00
artifact(compressTiny.output) {
2018-10-30 07:29:43 -04:00
classifier "tiny"
builtBy compressTiny
2018-10-30 07:29:43 -04:00
}
2019-11-07 06:38:33 -05:00
artifact(tinyJar)
artifact(v2UnmergedYarnJar) {
classifier "v2"
}
artifact(v2MergedYarnJar) {
classifier "mergedv2"
}
2018-10-30 07:29:43 -04:00
}
2019-11-07 06:38:33 -05:00
2018-10-30 07:29:43 -04:00
}
repositories {
maven {
url "http://mavenupload.modmuss50.me/"
if (project.hasProperty('mavenPass')) {
credentials {
username 'buildslave'
password project.getProperty('mavenPass')
}
}
}
}
}
2019-11-07 06:38:33 -05:00
void mapJar(File output, File input, File mappings, File libraries, String from, String to) {
if (output.exists()) {
output.delete()
}
def remapper = TinyRemapper.newRemapper()
2019-11-07 06:38:33 -05:00
.withMappings(TinyUtils.createTinyMappingProvider(mappings.toPath(), from, to))
.renameInvalidLocals(true)
.rebuildSourceFilenames(true)
.build()
try {
def outputConsumer = new OutputConsumerPath(output.toPath())
outputConsumer.addNonClassFiles(input.toPath())
remapper.readInputs(input.toPath())
2019-11-07 06:38:33 -05:00
libraries.eachFileRecurse(FileType.FILES) { file ->
remapper.readClassPath(file.toPath())
}
remapper.apply(outputConsumer)
outputConsumer.close()
2019-01-16 13:37:56 -05:00
remapper.finish()
} catch (Exception e) {
2019-01-16 13:37:56 -05:00
remapper.finish()
throw new RuntimeException("Failed to remap jar", e)
}
}
2018-10-30 07:29:43 -04:00
class FileOutput extends DefaultTask {
2019-11-07 06:38:33 -05:00
@OutputFile
File output
}
2019-11-07 06:38:33 -05:00
class WithV2FileOutput extends DefaultTask {
@OutputFile
File v1Output
@OutputFile
File v2Output
2020-03-20 18:57:01 -04:00
}