1
0
mirror of https://github.com/chylex/Better-Controls.git synced 2024-10-17 07:42:47 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
761fdb76da
Switch from separate loader jars to one multiloader jar 2024-07-03 03:23:48 +02:00
d721d6254d
Make jar files reproducible 2024-07-03 03:23:25 +02:00
6 changed files with 37 additions and 17 deletions

View File

@ -1,3 +1,5 @@
import org.gradle.jvm.tasks.Jar
val modId: String by project val modId: String by project
val minecraftVersion: String by project val minecraftVersion: String by project
val fabricVersion: String by project val fabricVersion: String by project
@ -45,6 +47,11 @@ tasks.jar {
exclude("com/terraformersmc/modmenu/") exclude("com/terraformersmc/modmenu/")
} }
tasks.remapJar { tasks.register<Jar>("uncompressedRemapJar") {
archiveVersion.set(tasks.jar.get().archiveVersion) group = "fabric"
from(tasks.remapJar.map { it.outputs.files.map(::zipTree) })
archiveClassifier.set("uncompressed")
entryCompression = ZipEntryCompression.STORED // Reduces size of multiloader jar.
} }

View File

@ -18,7 +18,7 @@
"sources": "${sourcesURL}" "sources": "${sourcesURL}"
}, },
"environment": "client", "environment": "${sidesForFabric}",
"entrypoints": { "entrypoints": {
"client": [ "chylex.bettercontrols.BetterControlsMod" ], "client": [ "chylex.bettercontrols.BetterControlsMod" ],
"modmenu": [ "chylex.bettercontrols.compatibility.ModMenuSupport" ] "modmenu": [ "chylex.bettercontrols.compatibility.ModMenuSupport" ]
@ -26,7 +26,7 @@
"mixins": [{ "mixins": [{
"config": "${id}.mixins.json", "config": "${id}.mixins.json",
"environment": "client" "environment": "${sidesForFabric}"
}], }],
"depends": { "depends": {

View File

@ -21,11 +21,11 @@ modId = "minecraft"
type = "required" type = "required"
versionRange = "[${minimumMinecraftVersion},)" versionRange = "[${minimumMinecraftVersion},)"
ordering = "NONE" ordering = "NONE"
side = "CLIENT" side = "${sidesForNeoForge}"
[[dependencies.${id}]] [[dependencies.${id}]]
modId = "neoforge" modId = "neoforge"
type = "required" type = "required"
versionRange = "[${minimumNeoForgeVersion},)" versionRange = "[${minimumNeoForgeVersion},)"
ordering = "NONE" ordering = "NONE"
side = "CLIENT" side = "${sidesForNeoForge}"

View File

@ -10,6 +10,7 @@ val modVersion: String by project
val modLicense: String by project val modLicense: String by project
val modSourcesURL: String by project val modSourcesURL: String by project
val modIssuesURL: String by project val modIssuesURL: String by project
val modSides: String by project
val minecraftVersion: String by project val minecraftVersion: String by project
val mixinVersion: String by project val mixinVersion: String by project
@ -19,7 +20,6 @@ val minimumNeoForgeVersion: String by project
val minimumFabricVersion: String by project val minimumFabricVersion: String by project
val modNameStripped = modName.replace(" ", "") val modNameStripped = modName.replace(" ", "")
val jarVersion = "$minecraftVersion+v$modVersion"
plugins { plugins {
idea idea
@ -96,6 +96,13 @@ allprojects {
} }
tasks.withType<ProcessResources> { tasks.withType<ProcessResources> {
val (sidesForNeoForge, sidesForFabric) = when (modSides) {
"both" -> Pair("BOTH", "*")
"client" -> Pair("CLIENT", "client")
"server" -> Pair("SERVER", "server")
else -> error("Invalid modSides value: $modSides")
}
inputs.property("id", modId) inputs.property("id", modId)
inputs.property("name", modName) inputs.property("name", modName)
inputs.property("description", modDescription) inputs.property("description", modDescription)
@ -104,6 +111,8 @@ allprojects {
inputs.property("license", modLicense) inputs.property("license", modLicense)
inputs.property("sourcesURL", modSourcesURL) inputs.property("sourcesURL", modSourcesURL)
inputs.property("issuesURL", modIssuesURL) inputs.property("issuesURL", modIssuesURL)
inputs.property("sidesForNeoForge", sidesForNeoForge)
inputs.property("sidesForFabric", sidesForFabric)
inputs.property("minimumMinecraftVersion", minimumMinecraftVersion) inputs.property("minimumMinecraftVersion", minimumMinecraftVersion)
inputs.property("minimumNeoForgeVersion", minimumNeoForgeVersion) inputs.property("minimumNeoForgeVersion", minimumNeoForgeVersion)
inputs.property("minimumFabricVersion", minimumFabricVersion) inputs.property("minimumFabricVersion", minimumFabricVersion)
@ -112,6 +121,11 @@ allprojects {
into("assets/$modId") into("assets/$modId")
} }
} }
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}
} }
subprojects { subprojects {
@ -136,10 +150,7 @@ subprojects {
} }
tasks.jar { tasks.jar {
archiveVersion.set(jarVersion) entryCompression = ZipEntryCompression.STORED // Reduces size of multiloader jar.
entryCompression = ZipEntryCompression.STORED
from(rootProject.file("LICENSE"))
manifest { manifest {
packageInformation(modId, "$modNameStripped-${project.name}") packageInformation(modId, "$modNameStripped-${project.name}")
@ -168,20 +179,21 @@ val multiloaderJar = tasks.register<Jar>("multiloaderJar") {
group = "build" group = "build"
archiveBaseName.set(modNameStripped) archiveBaseName.set(modNameStripped)
archiveVersion.set(jarVersion) archiveVersion.set("$minecraftVersion+v$modVersion")
destinationDirectory = layout.buildDirectory.dir("dist") destinationDirectory = layout.buildDirectory.dir("dist")
fun includeJar(project: Project, jarTask: (TaskContainer) -> TaskProvider<out Jar>) { fun includeJar(project: Project, jarTaskName: String) {
from(jarTask(project.tasks).map { it.outputs }) { from(project.tasks.named(jarTaskName).map { it.outputs }) {
into("jars") into("jars")
rename { "$modNameStripped-${project.name}.jar" } rename { "$modNameStripped-${project.name}.jar" }
} }
} }
findProject(":NeoForge")?.let { includeJar(it, TaskContainer::jar) } findProject(":NeoForge")?.let { includeJar(it, "jar") }
findProject(":Fabric")?.let { includeJar(it, TaskContainer::remapJar) } findProject(":Fabric")?.let { includeJar(it, "uncompressedRemapJar") }
from(rootProject.file("LICENSE"))
from(multiloaderSources.map { it.output }) from(multiloaderSources.map { it.output })
manifest { manifest {

View File

@ -7,6 +7,7 @@ modVersion=1.3.1
modLicense=MPL-2.0 modLicense=MPL-2.0
modSourcesURL=https://github.com/chylex/Better-Controls modSourcesURL=https://github.com/chylex/Better-Controls
modIssuesURL=https://github.com/chylex/Better-Controls/issues modIssuesURL=https://github.com/chylex/Better-Controls/issues
modSides=client
# Dependencies # Dependencies
minecraftVersion=1.21 minecraftVersion=1.21

View File

@ -18,7 +18,7 @@
"sources": "${sourcesURL}" "sources": "${sourcesURL}"
}, },
"environment": "client", "environment": "${sidesForFabric}",
"jars": [{ "jars": [{
"file": "jars/${jarPrefix}-Fabric.jar" "file": "jars/${jarPrefix}-Fabric.jar"