forked from Sk1erLLC/Levelhead
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.gradle.kts
More file actions
23 lines (21 loc) · 861 Bytes
/
root.gradle.kts
File metadata and controls
23 lines (21 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
kotlin("jvm") version "1.3.72" apply false
id("fabric-loom") version "0.4-SNAPSHOT" apply false
id("com.replaymod.preprocess") version "f64d217"
}
// Loom tries to find the active mixin version by recursing up to the root project and checking each project's
// compileClasspath and build script classpath (in that order). Since we've loom in our root project's classpath,
// loom will only find it after checking the root project's compileClasspath (which doesn't exist by default).
configurations.register("compileClasspath")
preprocess {
// "1.16.2-fabric"(11602, "yarn") {
// "1.16.2"(11602, "srg") {
// "1.15.2"(11502, "srg") {
// "1.12.2"(11202, "srg", file("versions/1.15.2-1.12.2.txt")) {
"1.12.2"(11202, "srg") {
"1.8.9"(10809, "srg", file("versions/1.12.2-1.8.9.txt"))
}
}
//}
// }
//}