Skip to content

Commit 6b1f64e

Browse files
authored
Update Gradle and JUnit (#247)
* Update Gradle and dependencies * Update JUnit
1 parent 7ab67d6 commit 6b1f64e

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Experiments with Java"
99

1010
allprojects {
1111
group = "io.github.mfvanek"
12-
version = "0.3.1"
12+
version = "0.3.2"
1313

1414
repositories {
1515
mavenLocal()
@@ -19,7 +19,7 @@ allprojects {
1919

2020
tasks {
2121
wrapper {
22-
gradleVersion = "8.12.1"
22+
gradleVersion = "8.13"
2323
}
2424
}
2525

buildSrc/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ repositories {
77
}
88

99
dependencies {
10-
implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.1.0")
10+
implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.1.0")
1111
implementation("io.freefair.gradle:lombok-plugin:8.13")
1212
implementation("com.bmuschko:gradle-docker-plugin:9.4.0")
1313
implementation("gradle.plugin.com.google.gradle:osdetector-gradle-plugin:1.7.3")
1414
implementation("de.thetaphi:forbiddenapis:3.8")
15-
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.1.0")
16-
implementation("org.gradle:test-retry-gradle-plugin:1.6.1")
15+
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.1.7")
16+
implementation("org.gradle:test-retry-gradle-plugin:1.6.2")
1717
}

buildSrc/src/main/kotlin/sb-ot-demo.java-conventions.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ dependencies {
3333
}
3434

3535
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
36+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3637

3738
errorprone("com.google.errorprone:error_prone_core:2.36.0")
3839
errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.28")

common-internal-bom/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ javaPlatform {
1818
dependencies {
1919
api(platform("org.assertj:assertj-bom:3.27.3"))
2020
api(platform("org.testcontainers:testcontainers-bom:1.20.6"))
21-
api(platform("org.junit:junit-bom:5.11.4"))
21+
api(platform("org.junit:junit-bom:5.12.1"))
2222
api(platform("io.github.mfvanek:pg-index-health-bom:0.14.4"))
2323

2424
constraints {

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

0 commit comments

Comments
 (0)