m-trieu commented on code in PR #30425:
URL: https://github.com/apache/beam/pull/30425#discussion_r1521004735
##########
runners/google-cloud-dataflow-java/worker/build.gradle:
##########
@@ -71,6 +71,10 @@ def excluded_dependencies = [
library.java.truth // Test only
]
+// For Java8+ and less than Java11, use versions 2.x.x.
+// For Java11+ use versions 3.x.x per https://github.com/ben-manes/caffeine.
+def caffeine_cache_version = project.javaVersion < "11" ? "2.9.3" : "3.1.8"
Review Comment:
removed the branch, defaulting to the lower version
--
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]