48 lines
1.7 KiB
Kotlin
48 lines
1.7 KiB
Kotlin
plugins {
|
|
id("dev.kikugie.stonecutter")
|
|
id("dev.architectury.loom") version "1.7-SNAPSHOT" apply false
|
|
id("architectury-plugin") version "3.4-SNAPSHOT" apply false
|
|
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
|
|
id("me.modmuss50.mod-publish-plugin") version "0.8.4" apply false
|
|
}
|
|
stonecutter active "1.20.4-neoforge" /* [SC] DO NOT EDIT */
|
|
stonecutter.automaticPlatformConstants = true
|
|
|
|
// Builds every version into `build/libs/{mod.version}/{loader}`
|
|
stonecutter registerChiseled tasks.register("chiseledBuild", stonecutter.chiseled) {
|
|
group = "project"
|
|
ofTask("buildAndCollect")
|
|
}
|
|
stonecutter registerChiseled tasks.register("chiseledPublishMods", stonecutter.chiseled) {
|
|
group = "project"
|
|
ofTask("publishMods")
|
|
}
|
|
stonecutter registerChiseled tasks.register("chiseledRunAllClients", stonecutter.chiseled) {
|
|
group = "project"
|
|
ofTask("runClient")
|
|
}
|
|
|
|
|
|
|
|
// Builds loader-specific versions into `build/libs/{mod.version}/{loader}`
|
|
for (it in stonecutter.tree.branches) {
|
|
if (it.id.isEmpty()) continue
|
|
val loader = it.id.upperCaseFirst()
|
|
stonecutter registerChiseled tasks.register("chiseledBuild$loader", stonecutter.chiseled) {
|
|
group = "project"
|
|
versions { branch, _ -> branch == it.id }
|
|
ofTask("buildAndCollect")
|
|
}
|
|
}
|
|
|
|
// Runs active versions for each loader
|
|
for (it in stonecutter.tree.nodes) {
|
|
if (it.metadata != stonecutter.current || it.branch.id.isEmpty()) continue
|
|
val types = listOf("Client", "Server")
|
|
val loader = it.branch.id.upperCaseFirst()
|
|
for (type in types) it.tasks.register("runActive$type$loader") {
|
|
group = "project"
|
|
dependsOn("run$type")
|
|
}
|
|
}
|