Skip to content

Commit 62e41c8

Browse files
committed
update to Quarkus 3.31.1
1 parent ae8d283 commit 62e41c8

3 files changed

Lines changed: 5 additions & 13 deletions

File tree

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ subprojects {
9292
useJUnitPlatform()
9393

9494
systemProperty("java.util.logging.manager", "org.jboss.logmanager.LogManager")
95-
jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
9695

9796
testLogging {
9897
exceptionFormat = TestExceptionFormat.FULL

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ org.gradle.logging.level=INFO
77

88
# Quarkus
99
quarkusPluginId=io.quarkus
10-
quarkusPluginVersion=3.30.8
10+
quarkusPluginVersion=3.31.1
1111
# https://mvnrepository.com/artifact/io.quarkus.platform/quarkus-bom
1212
quarkusPlatformGroupId=io.quarkus.platform
1313
quarkusPlatformArtifactId=quarkus-bom
14-
quarkusPlatformVersion=3.30.8
14+
quarkusPlatformVersion=3.31.1
1515
systemProp.quarkus.analytics.disabled=true

operator/build.gradle.kts

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,15 @@ dependencies {
5757
/**
5858
* Testing
5959
*/
60-
testImplementation("io.quarkus:quarkus-junit5")
61-
testImplementation("io.quarkus:quarkus-junit5-mockito")
60+
testImplementation("io.quarkus:quarkus-junit")
61+
testImplementation("io.quarkus:quarkus-junit-mockito")
6262
testImplementation("org.awaitility:awaitility")
6363
testImplementation(libs.assertj)
6464
testImplementation(libs.datafaker)
6565
}
6666

67-
tasks.quarkusDev {
68-
// Java 24+ issue. Remove after this has been fixed.
69-
// https://github.com/quarkusio/quarkus/issues/47769#issuecomment-3148789105
70-
// https://github.com/quarkusio/quarkus/pull/49920
71-
jvmArgs = listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")
72-
}
73-
7467
tasks.quarkusAppPartsBuild {
75-
doNotTrackState("Always execute Gradle task quarkusAppPartsBuild to generate the K8s deploy manifest kubernetes.yml and to publish the Helm chart")
68+
doNotTrackState("Always execute Gradle task quarkusAppPartsBuild to generate the K8s deploy manifest kubernetes.yml, the CRDs, and to publish the Helm chart")
7669
}
7770

7871
tasks.withType<Test> {

0 commit comments

Comments
 (0)