dongjoon-hyun commented on code in PR #178: URL: https://github.com/apache/spark-kubernetes-operator/pull/178#discussion_r2067848793
########## build.gradle: ########## @@ -68,22 +71,24 @@ subprojects { showViolations = true } - apply plugin: 'pmd' - pmd { - ruleSetFiles = files("$rootDir/config/pmd/ruleset.xml") - toolVersion = libs.versions.pmd.get() - consoleOutput = true - ignoreFailures = false - } + if (JavaVersion.current() < JavaVersion.VERSION_24) { Review Comment: BTW, these tools (PMD and spotbugs) are static code analysis tools. So, Java 17/21 test coverage are enough already. We don't need them in Java 24. -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org