mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-12-21 16:17:37 +01:00
67c977009b
* Finally fix the cursed loom 1.5 update. * Formatstyle adjustment. Tabs make this look ugly.
21 lines
643 B
Plaintext
21 lines
643 B
Plaintext
dependencies {
|
|
minecraft("com.mojang:minecraft:1.8.9")
|
|
mappings("net.legacyfabric:yarn:1.8.9+build.532:v2")
|
|
|
|
modImplementation("net.legacyfabric.legacy-fabric-api:legacy-fabric-api:1.9.1+1.8.9")
|
|
modImplementation("io.github.boogiemonster1o1:rewoven-modmenu:1.0.0+1.8.9") {
|
|
isTransitive = false
|
|
}
|
|
|
|
// fix newer java
|
|
@Suppress("GradlePackageUpdate", "RedundantSuppression")
|
|
implementation("io.netty:netty-all:4.0.56.Final")
|
|
}
|
|
|
|
loom {
|
|
intermediaryUrl.set("https://maven.legacyfabric.net/net/legacyfabric/intermediary/%1\$s/intermediary-%1\$s-v2.jar")
|
|
}
|
|
|
|
tasks.compileJava {
|
|
options.release.set(8)
|
|
} |