-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreprocess.gradle.kts
28 lines (26 loc) · 1.13 KB
/
preprocess.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
import com.replaymod.gradle.preprocess.RootPreprocessExtension
plugins {
id("com.replaymod.preprocess") apply false
}
project.extensions.create("preprocess", RootPreprocessExtension::class)
configure<RootPreprocessExtension> {
"1.16.4"(11604, "yarn") {
"1.16.1"(11601, "yarn") {
"1.15.2"(11502, "yarn") {
"1.14.4"(11404, "yarn", file("versions/mapping-fabric-1.15.2-1.14.4.txt")) {
"1.14.4-forge"(11404, "srg", file("versions/mapping-1.14.4-fabric-forge.txt")) {
"1.12"(11200, "srg", file("versions/1.14.4-forge/mapping.txt")) {
"1.9.4"(10904, "srg", file("versions/1.12/mapping.txt")) {
"1.8.9"(10809, "srg", file("versions/1.9.4/mapping.txt")) {
"1.8"(10800, "srg") {
"1.7.10"(10710, "srg", file("versions/1.8/mapping.txt"))
}
}
}
}
}
}
}
}
}
}