-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
root.gradle.kts
34 lines (33 loc) · 1.36 KB
/
root.gradle.kts
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
34
plugins {
kotlin("jvm") version "1.9.24" apply false
id("net.kyori.blossom") version "1.3.2" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
id("gg.essential.multi-version.root")
}
preprocess {
"1.21-fabric"(12100, "yarn") {
"1.20.6-fabric"(12006, "yarn") {
"1.20.4-fabric"(12004, "yarn") {
"1.20.2-fabric"(12002, "yarn") {
"1.20.1-fabric"(12001, "yarn") {
"1.19.4-fabric"(11904, "yarn") {
"1.19.3-fabric"(11903, "yarn") {
"1.19-fabric"(11900, "yarn") {
"1.18.1-fabric"(11801, "yarn") {
"1.17.1-fabric"(11701, "yarn") {
"1.17.1-forge"(11701, "srg") {
"1.12.2-forge"(11202, "srg") {
"1.8.9-forge"(10809, "srg", file("versions/1.12.2-1.8.9.txt"))
}
}
}
}
}
}
}
}
}
}
}
}
}