forked from ThatGravyBoat/Craftify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.gradle.kts
26 lines (25 loc) · 903 Bytes
/
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
plugins {
kotlin("jvm") version "1.6.10" apply false
id("net.kyori.blossom") version "1.3.0" apply false
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
id("gg.essential.multi-version.root")
}
preprocess {
"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"))
}
}
}
}
}
}
}
}
}