Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/setup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
// Geometry (for testfly collision detection via PortalCollisionHelper)
implementation(libs.geometry)
// Test
testImplementation(platform("org.junit:junit-bom:5.14.3"))
testImplementation(platform("org.junit:junit-bom:5.14.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.assertj:assertj-core:3.27.7")
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
runtimeOnly(libs.log4j2.slf4j2)

testImplementation(libs.minecraft.minestom.testing)
testImplementation(platform("org.junit:junit-bom:5.14.3"))
testImplementation(platform("org.junit:junit-bom:5.14.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation(libs.archunit.junit5)
Expand Down
2 changes: 1 addition & 1 deletion shared/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
// Annotations
compileOnly(libs.jetbrains.annotations)
// Test
testImplementation(platform("org.junit:junit-bom:5.14.3"))
testImplementation(platform("org.junit:junit-bom:5.14.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.assertj:assertj-core:3.27.7")
Expand Down
2 changes: 1 addition & 1 deletion shared/database/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation(libs.jetbrains.annotations)
implementation(project(":shared:common"))

testImplementation(platform("org.junit:junit-bom:5.14.3"))
testImplementation(platform("org.junit:junit-bom:5.14.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.assertj:assertj-core:3.27.7")
Expand Down
2 changes: 1 addition & 1 deletion shared/spline/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation(libs.geometry)
compileOnly(libs.jetbrains.annotations)
// Test
testImplementation(platform("org.junit:junit-bom:5.14.3"))
testImplementation(platform("org.junit:junit-bom:5.14.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.assertj:assertj-core:3.27.7")
Expand Down
Loading