Update dependencies

This commit is contained in:
Ennui Langeweile 2023-08-12 15:47:26 -03:00
parent ee95739b5d
commit ecc63b961b
No known key found for this signature in database
GPG Key ID: C2C63BEAB0520BC4
5 changed files with 14 additions and 7 deletions

View File

@ -3,7 +3,10 @@ plugins {
alias libs.plugins.quilt.loom
}
base.archivesName = project.archives_base_name
base {
archivesName = project.archives_base_name
}
version = "$project.version+${libs.versions.minecraft.get()}"
group = project.maven_group

View File

@ -1,10 +1,10 @@
[versions]
# The latest versions are available at https://lambdaurora.dev/tools/import_quilt.html
minecraft = "1.20.1"
quilt_mappings = "1.20.1+build.1"
quilt_loader = "0.19.1"
quilt_mappings = "1.20.1+build.23"
quilt_loader = "0.19.2"
quilted_fabric_api = "7.0.3+0.83.1-1.20.1"
quilted_fabric_api = "7.1.1+0.86.1-1.20.1"
[libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
@ -19,4 +19,4 @@ quilted_fabric_api_deprecated = { module = "org.quiltmc.quilted-fabric-api:quilt
quilted_fabric_api = ["quilted_fabric_api", "quilted_fabric_api_deprecated"]
[plugins]
quilt_loom = { id = "org.quiltmc.loom", version = "1.2.+" }
quilt_loom = { id = "org.quiltmc.loom", version = "1.3.+" }

Binary file not shown.

View File

@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

5
gradlew vendored
View File

@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.