Skip to content

Commit

Permalink
chore(deps): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SettingDust committed Mar 1, 2024
1 parent b9d84e0 commit 23bf300
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 21 deletions.
6 changes: 0 additions & 6 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ tasks {

shadowJar {
configurations = listOf(project.configurations.getByName("shadow"))
destinationDirectory.set(project.buildDir.resolve("devlibs"))
archiveClassifier.set("dev")
destinationDirectory = project.layout.buildDirectory.dir("devlibs")
archiveClassifier = "dev"
}

remapJar {
dependsOn(shadowJar)
inputFile.set(shadowJar.get().archiveFile)
destinationDirectory.set(rootProject.libsDirectory)
inputFile = shadowJar.get().archiveFile
destinationDirectory = rootProject.libsDirectory
}

afterEvaluate {
Expand Down
9 changes: 5 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[versions]
# The latest Quilt versions are available at https://lambdaurora.dev/tools/import_quilt.html
minecraft = "1.20.1"
min_minecraft = "1.19.4"
parchmentmc = "2023.09.03"
Expand All @@ -14,11 +13,12 @@ kotlinx_coroutines = "1.7.3"
fabric_loader = "0.14.24"
fabric_language_kotlin = "1.10.14+kotlin.1.9.20"
# quilt
# The latest Quilt versions are available at https://lambdaurora.dev/tools/import_quilt.html
quilt_loader = "0.22.0-beta.1"
quilted_fabric_api = "7.4.0+0.90.0-1.20.1"
qsl_version = "6.1.2+1.20.1"

yacl = "3.2.1+1.20"
yacl = "3.2.2+1.20"
min_yacl = "3.0.3"
modmenu = "7.1.0"
min_modmenu = "3.0.0"
Expand Down Expand Up @@ -70,11 +70,12 @@ kotlin_forge = { module = "thedarkcolour:kotlinforforge", version.ref = "kotlin_


[plugins]
architectury_loom = { id = "dev.architectury.loom", version = "1.3.+" }
architectury_loom = { id = "dev.architectury.loom", version = "1.5.+" }
architectury = { id = "architectury-plugin", version = "3.+" }
shadow = { id = "com.github.johnrengelman.shadow", version = "8.1.1" }

kotlin_jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin_plugin_serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }

gitSemverPlugin = { id = "com.github.jmongard.git-semver-plugin", version = "0.10.+" }
# https://github.com/jmongard/Git.SemVersioning.Gradle/releases
gitSemverPlugin = { id = "com.github.jmongard.git-semver-plugin", version = "0.12.+" }
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
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.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 1 addition & 4 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,10 @@ location of your Java installation."
fi
else
JAVACMD=java
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.
which java >/dev/null 2>&1 || 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.
Expand Down

0 comments on commit 23bf300

Please sign in to comment.