snazy commented on code in PR #7702:
URL: https://github.com/apache/iceberg/pull/7702#discussion_r1211981184
##########
build.gradle:
##########
@@ -824,8 +824,19 @@ project(':iceberg-pig') {
}
project(':iceberg-nessie') {
- test {
- useJUnitPlatform()
+ if (JavaVersion.current().isJava11Compatible()) {
+ test {
+ useJUnitPlatform()
+ }
+ } else {
+ // Do not test Nessie against Java 8, because in-JVM testing requires
Nessie server components,
+ // which require Java 11+.
+ test {
+ enabled = false
+ }
+ compileTestJava {
+ enabled = false
Review Comment:
Still compiles w/ Java 11+. Once we (Nessie) also have bumped the
server-side code to Java 11, it would start to fail.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]