179 lines
No EOL
5.1 KiB
Text
179 lines
No EOL
5.1 KiB
Text
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
import gg.essential.gradle.util.noServerRunConfigs
|
|
|
|
plugins {
|
|
id("gg.essential.multi-version")
|
|
id("gg.essential.defaults.repo")
|
|
id("gg.essential.defaults.java")
|
|
id("gg.essential.defaults.loom")
|
|
id("com.github.johnrengelman.shadow")
|
|
id("net.kyori.blossom") version "1.3.0"
|
|
id("io.github.juuxel.loom-quiltflower-mini")
|
|
id("signing")
|
|
java
|
|
}
|
|
|
|
val mod_name: String by project
|
|
val mod_version: String by project
|
|
val mod_id: String by project
|
|
|
|
preprocess {
|
|
vars.put("MODERN", if (project.platform.mcMinor >= 16) 1 else 0)
|
|
}
|
|
|
|
blossom {
|
|
replaceToken("@VER@", mod_version)
|
|
replaceToken("@NAME@", mod_name)
|
|
replaceToken("@ID@", mod_id)
|
|
}
|
|
|
|
version = mod_version
|
|
group = "me.night0721"
|
|
base {
|
|
archivesName.set("$mod_name")
|
|
}
|
|
loom {
|
|
noServerRunConfigs()
|
|
if (project.platform.isLegacyForge) {
|
|
launchConfigs.named("client") {
|
|
arg("--tweakClass", "cc.polyfrost.oneconfigwrapper.OneConfigWrapper")
|
|
property("mixin.debug.export", "true")
|
|
}
|
|
}
|
|
if (project.platform.isForge) {
|
|
forge {
|
|
mixinConfig("mixins.${mod_id}.json")
|
|
}
|
|
}
|
|
mixin.defaultRefmapName.set("mixins.${mod_id}.refmap.json")
|
|
}
|
|
|
|
val shade: Configuration by configurations.creating {
|
|
configurations.implementation.get().extendsFrom(this)
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
output.setResourcesDir(java.classesDirectory)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven("https://repo.polyfrost.cc/releases")
|
|
}
|
|
|
|
dependencies {
|
|
modCompileOnly("cc.polyfrost:oneconfig-$platform:0.2.0-alpha+")
|
|
implementation("org.json:json:20220924")
|
|
|
|
if (platform.isLegacyForge) {
|
|
compileOnly("org.spongepowered:mixin:0.7.11-SNAPSHOT")
|
|
shade("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+")
|
|
}
|
|
}
|
|
|
|
tasks.processResources {
|
|
inputs.property("id", mod_id)
|
|
inputs.property("name", mod_name)
|
|
val java = if (project.platform.mcMinor >= 18) {
|
|
17
|
|
} else {
|
|
if (project.platform.mcMinor == 17) 16 else 8
|
|
}
|
|
val compatLevel = "JAVA_${java}"
|
|
inputs.property("java", java)
|
|
inputs.property("java_level", compatLevel)
|
|
inputs.property("version", mod_version)
|
|
inputs.property("mcVersionStr", project.platform.mcVersionStr)
|
|
filesMatching(listOf("mcmod.info", "mixins.${mod_id}.json", "mods.toml")) {
|
|
expand(
|
|
mapOf(
|
|
"id" to mod_id,
|
|
"name" to mod_name,
|
|
"java" to java,
|
|
"java_level" to compatLevel,
|
|
"version" to mod_version,
|
|
"mcVersionStr" to project.platform.mcVersionStr
|
|
)
|
|
)
|
|
}
|
|
filesMatching("fabric.mod.json") {
|
|
expand(
|
|
mapOf(
|
|
"id" to mod_id,
|
|
"name" to mod_name,
|
|
"java" to java,
|
|
"java_level" to compatLevel,
|
|
"version" to mod_version,
|
|
"mcVersionStr" to project.platform.mcVersionStr.substringBeforeLast(".") + ".x"
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
if (rootProject.file("LICENSE-TEMPLATE").exists()) {
|
|
logger.error("-------------------------------------------------------")
|
|
logger.error("PLEASE REPLACE THE `LICENSE-TEMPLATE` FILE WITH YOUR OWN LICENSE")
|
|
logger.error("-------------------------------------------------------")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
withType(Jar::class.java) {
|
|
if (project.platform.isFabric) {
|
|
exclude("mcmod.info", "mods.toml")
|
|
} else {
|
|
exclude("fabric.mod.json")
|
|
if (project.platform.isLegacyForge) {
|
|
exclude("mods.toml")
|
|
} else {
|
|
exclude("mcmod.info")
|
|
}
|
|
}
|
|
|
|
named<ShadowJar>("shadowJar") {
|
|
archiveClassifier.set("dev")
|
|
configurations = listOf(shade)
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
remapJar {
|
|
input.set(shadowJar.get().archiveFile)
|
|
archiveClassifier.set("")
|
|
}
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
mapOf(
|
|
"ModSide" to "CLIENT",
|
|
"ForceLoadAsMod" to true,
|
|
"TweakOrder" to "0",
|
|
"MixinConfigs" to "mixins.${mod_id}.json",
|
|
"TweakClass" to "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker"
|
|
)
|
|
)
|
|
}
|
|
dependsOn(shadowJar)
|
|
archiveClassifier.set("")
|
|
enabled = false
|
|
|
|
project.gradle.addBuildListener(object : BuildListener {
|
|
override fun settingsEvaluated(settings: Settings) {
|
|
println("settings evaluated!")
|
|
}
|
|
|
|
override fun projectsLoaded(gradle: Gradle) {
|
|
println("loaded!")
|
|
}
|
|
|
|
override fun projectsEvaluated(gradle: Gradle) {
|
|
println("projects evaluated!")
|
|
}
|
|
|
|
override fun buildFinished(result: BuildResult) {
|
|
println(jar)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
} |