Skip to content

Commit

Permalink
build: update dependencies (#5189)
Browse files Browse the repository at this point in the history
* gradle-8.5, full java-21 support. idea-ext plugin 1.1.7.
* junit-bom 5.x.x -> 5.10.1
* lwjgl 3.3.1 -> 3.3.3
  • Loading branch information
soloturn authored Dec 5, 2023
1 parent 1f3e359 commit 1b57c1b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

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

2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/terasology-metrics.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
because("redirects java.util.logging (from e.g. junit) through slf4j")
}

add("testImplementation", platform("org.junit:junit-bom:5.10.0"))
add("testImplementation", platform("org.junit:junit-bom:5.10.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
Expand Down
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/terasology-module.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if (project.name == "ModuleTestingEnvironment") {
runtimeOnly("org.codehaus.janino:janino:3.1.3") {
because("logback filters")
}
add("implementation", platform("org.junit:junit-bom:5.8.1"))
add("implementation", platform("org.junit:junit-bom:5.10.1"))
implementation("org.junit.jupiter:junit-jupiter-api")
implementation("org.mockito:mockito-junit-jupiter:3.12.4")
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ plugins {
//apply plugin: 'eclipse'
id "idea"
// For the "Build and run using: Intellij IDEA | Gradle" switch
id "org.jetbrains.gradle.plugin.idea-ext" version "1.0"
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.7"

id("com.google.protobuf") version "0.9.4" apply false
id("terasology-repositories")
Expand Down Expand Up @@ -75,7 +75,7 @@ ext {
// Lib dir for use in manifest entries etc (like in :engine). A separate "libsDir" exists, auto-created by Gradle
subDirLibs = 'libs'

LwjglVersion = '3.3.1'
LwjglVersion = '3.3.3'
}


Expand Down
2 changes: 1 addition & 1 deletion engine-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ dependencies {


// Test lib dependencies
implementation(platform("org.junit:junit-bom:5.10.0")) {
implementation(platform("org.junit:junit-bom:5.10.1")) {
// junit-bom will set version numbers for the other org.junit dependencies.
}
api("org.junit.jupiter:junit-jupiter-api") {
Expand Down
2 changes: 1 addition & 1 deletion facades/PC/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ dependencies {
because("redirects java.util.logging from miscellaneous dependencies through slf4j")
}

testImplementation(platform("org.junit:junit-bom:5.7.1")) {
testImplementation(platform("org.junit:junit-bom:5.10.1")) {
// junit-bom will set version numbers for the other org.junit dependencies.
}
testImplementation("org.junit.jupiter:junit-jupiter-api")
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion subsystems/TypeHandlerLibrary/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
testRuntimeOnly("org.slf4j:slf4j-simple:1.7.32") {
because("log output during tests")
}
testImplementation(platform("org.junit:junit-bom:5.8.1")) {
testImplementation(platform("org.junit:junit-bom:5.10.1")) {
// junit-bom will set version numbers for the other org.junit dependencies.
}
testImplementation("org.junit.jupiter:junit-jupiter-api")
Expand Down

0 comments on commit 1b57c1b

Please sign in to comment.