chia7712 commented on code in PR #20295: URL: https://github.com/apache/kafka/pull/20295#discussion_r2251556852
########## build.gradle: ########## @@ -72,6 +72,12 @@ ext { "--add-opens=java.security.jgss/sun.security.krb5=ALL-UNNAMED" ) + if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_24)) { + // Spotbugs is not compatible with Java 24+ until Spotbugs 4.9.4. Disable it until we can upgrade to that version. + project.gradle.startParameter.excludedTaskNames.add("spotbugsMain") Review Comment: With this change, we should be able to remove `-x spotbugsMain` from the CI, right? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org