mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-11-05 09:09:46 +01:00
0259407fc2
* 1.20.2-rc2, Dependency updates, JDK level correction. * Clarify what SDKMAN will deploy. * Improve second-liner for jitpack comment. * Modrinth does not have 1.20.2-rc2 yet. * Set viaversion dependency to 4.8.0 in fabric.mod.json. 1.20.2 will not work with ViaVersion 4.6.0 - 4.7.1-SNAPSHOT, therefore this part is needed at some point. * 1.20.2-rc2 -> 1.20.2. * We use mclo.gs now, not paste.gg.
18 lines
594 B
Plaintext
18 lines
594 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")
|
|
}
|