rjrudin opened a new issue, #2132:
URL: https://github.com/apache/jena/issues/2132

   ### Version
   
   4.10.0
   
   ### Question
   
   Hello - my team is looking to include jena-arq in a Java application for 
which we would like to maintain Java 8 as the minimum version. The caffeine 3.x 
dependency forces Java 11 as a minimum version.
   
   I changed our Gradle configuration to force usage of the latest caffeine 2.x 
library:
   
   ```
   implementation("org.apache.jena:jena-arq:4.10.0") {
       exclude module: "caffeine"
   }
   implementation "com.github.ben-manes.caffeine:caffeine:2.9.3"
   ```
   
   And initial testing shows that this seemingly just works, though our usage 
of Jena is fairly simple right now:
   
   1. Read files via `AsyncParser` and `RDFParserBuilder`.
   2. Build a `Graph` containing triples and use `RDFWriter` to write out 
triples in `NTRIPLES` format.
   
   Just wondering if there any gotchas to be aware of? Didn't find anything of 
interest in a search on "caffeine" through this repository, so hoping this does 
in fact just work.


-- 
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]

Reply via email to