update via

This commit is contained in:
creeper123123321 2021-06-04 15:26:43 -03:00
parent c5ff2053fe
commit 4637ca3564
2 changed files with 6 additions and 4 deletions

View File

@ -10,7 +10,7 @@ plugins {
}
def ENV = System.getenv()
def vvVer = "4.0.0-1.17-pre5-20210604.101612-2"
def vvVer = "4.0.0-1.17-rc1-SNAPSHOT"
description = "Client-side and server-side ViaVersion implementation for Fabric"
version = "0.4.1+" + ENV.GITHUB_RUN_NUMBER + "-" + getBranch()
@ -188,7 +188,9 @@ void setupRepositories(RepositoryHandler repositories) {
}
}
subprojects.each { remapJar.dependsOn("${it.path}:remapJar") }
subprojects.each {
remapJar.dependsOn("${it.path}:remapJar")
}
dependencies {
minecraft("com.mojang:minecraft:1.8.9")

View File

@ -1,8 +1,8 @@
version = rootProject.version
dependencies {
minecraft("com.mojang:minecraft:1.17-pre4")
mappings("net.fabricmc:yarn:1.17-pre4+build.1:v2")
minecraft("com.mojang:minecraft:1.17-rc1")
mappings("net.fabricmc:yarn:1.17-rc1+build.1:v2")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.34.8+1.17")
modImplementation("com.terraformersmc:modmenu:2.0.0-beta.7")