We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e314c commit 0960cc1Copy full SHA for 0960cc1
1 file changed
build.gradle.kts
@@ -34,9 +34,12 @@ loom {
34
35
dependencies {
36
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
37
+ @Suppress("UnstableApiUsage")
38
mappings(loom.layered {
39
officialMojangMappings()
- parchment("org.parchmentmc.data:parchment-${property("minecraft_version")}:${property("parchment_version")}@zip")
40
+ optionalProp("${property("parchment_version")}") {
41
+ parchment("org.parchmentmc.data:parchment-${property("minecraft_version")}:$it@zip")
42
+ }
43
optionalProp("${property("yalmm_version")}") {
44
mappings("dev.lambdaurora:yalmm-mojbackward:${property("minecraft_version")}+build.$it")
45
}
0 commit comments