2021-04-08 10:18:46 +02:00
|
|
|
architectury { platformSetupLoomIde(); forge() }
|
2021-05-03 10:27:38 +02:00
|
|
|
repositories {
|
|
|
|
maven(url = "https://thedarkcolour.github.io/KotlinForForge/")
|
|
|
|
}
|
2021-05-18 22:14:35 +02:00
|
|
|
|
2021-04-08 10:18:46 +02:00
|
|
|
dependencies {
|
2021-04-29 12:52:58 +02:00
|
|
|
forge("net.minecraftforge:forge:${rootProject.architectury.minecraft}-${rootProject.property("forge_version")}.+")
|
2021-05-27 18:45:26 +02:00
|
|
|
implementation("thedarkcolour:kotlinforforge:${rootProject.property("kotlinforforge")}")
|
2021-05-30 11:32:06 +02:00
|
|
|
modApi("me.shedaniel.cloth:cloth-config-forge:${rootProject.property("clothconfig_version")}")
|
2021-04-08 10:18:46 +02:00
|
|
|
implementation(project(path = ":common")) { isTransitive = false }
|
|
|
|
add("developmentForge", project(path = ":common")) { isTransitive = false }
|
2021-04-08 12:54:54 +02:00
|
|
|
shadowC(project(path = ":common", configuration = "transformProductionForge")) { isTransitive = false }
|
2021-04-08 18:36:45 +02:00
|
|
|
}; loom {
|
|
|
|
if (JavaVersion.current().isJava9Compatible) {
|
|
|
|
runs {
|
2021-04-13 14:43:41 +02:00
|
|
|
val args: MutableList<String> = mutableListOf("-Dfml.earlyprogresswindow=false")
|
|
|
|
args += if (JavaVersion.current() < JavaVersion.VERSION_17) {
|
2021-04-08 18:36:45 +02:00
|
|
|
listOf("--add-exports java.base/sun.security.util=ALL-UNNAMED", "--add-opens java.base/java.util.jar=ALL-UNNAMED")
|
2021-04-13 14:43:41 +02:00
|
|
|
} else listOf("--illegal-access=permit")
|
2021-04-08 18:36:45 +02:00
|
|
|
this.forEach {
|
|
|
|
it.vmArgs(args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|