Abacn commented on code in PR #35981:
URL: https://github.com/apache/beam/pull/35981#discussion_r2304638583
##########
examples/java/build.gradle:
##########
@@ -64,15 +64,18 @@ dependencies {
// but needed for compile only under Java21, specifically, required for
extending from AbstractKafkaAvroDeserializer
compileOnly library.java.kafka
}
+ if (JavaVersion.current().compareTo(JavaVersion.VERSION_11) >= 0) {
Review Comment:
This if clause does not change anything as JavaVersion.VERSION_11 is always
>=1 for build system for now. Java8 tests are run on forkOptions (set test to
use Java8 while Gradle still run on Java11)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]