blob: 92d73b9a6f670b331d6660321291b65d2cd213a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://repo.woverflow.cc")
}
plugins {
val egtVersion = "0.1.7"
id("gg.essential.multi-version.root") version egtVersion
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "io.github.juuxel.loom-quiltflower-mini") {
useModule("com.github.wyvest:loom-quiltflower-mini:${requested.version}")
}
}
}
}
val mod_name: String by settings
rootProject.name = mod_name
rootProject.buildFileName = "root.gradle.kts"
listOf(
"1.8.9-forge"
).forEach { version ->
include(":$version")
project(":$version").apply {
projectDir = file("versions/$version")
buildFileName = "../../build.gradle.kts"
}
}
|