Skip to content
Merged
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
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ subprojects {
useJUnitPlatform()

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

testLogging {
exceptionFormat = TestExceptionFormat.FULL
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ org.gradle.logging.level=INFO

# Quarkus
quarkusPluginId=io.quarkus
quarkusPluginVersion=3.30.8
quarkusPluginVersion=3.31.1
# https://mvnrepository.com/artifact/io.quarkus.platform/quarkus-bom
quarkusPlatformGroupId=io.quarkus.platform
quarkusPlatformArtifactId=quarkus-bom
quarkusPlatformVersion=3.30.8
quarkusPlatformVersion=3.31.1
systemProp.quarkus.analytics.disabled=true
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ assertj = "3.27.7"
checkstyle = "13.0.0"
datafaker = "2.5.3"
errorProne = "2.46.0"
errorPronePlugin = "4.4.0"
errorPronePlugin = "5.0.0"
nullAway = "0.13.1"

[plugins]
Expand Down
13 changes: 3 additions & 10 deletions operator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,15 @@ dependencies {
/**
* Testing
*/
testImplementation("io.quarkus:quarkus-junit5")
testImplementation("io.quarkus:quarkus-junit5-mockito")
testImplementation("io.quarkus:quarkus-junit")
testImplementation("io.quarkus:quarkus-junit-mockito")
testImplementation("org.awaitility:awaitility")
testImplementation(libs.assertj)
testImplementation(libs.datafaker)
}

tasks.quarkusDev {
// Java 24+ issue. Remove after this has been fixed.
// https://github.com/quarkusio/quarkus/issues/47769#issuecomment-3148789105
// https://github.com/quarkusio/quarkus/pull/49920
jvmArgs = listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")
}

tasks.quarkusAppPartsBuild {
doNotTrackState("Always execute Gradle task quarkusAppPartsBuild to generate the K8s deploy manifest kubernetes.yml and to publish the Helm chart")
doNotTrackState("Always execute Gradle task quarkusAppPartsBuild to generate the K8s deploy manifest kubernetes.yml, the CRDs, and to publish the Helm chart")
}

tasks.withType<Test> {
Expand Down
3 changes: 3 additions & 0 deletions operator/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
quarkus:
operator-sdk:
activate-leader-election-for-profiles:
- dev
datasource:
devservices:
port: 5432
Expand Down