Looks like you are not using the latest version of jena-fuseki-embedded. The pom.xml of the version 2.6.0 (released with Jena 3.3.0) lists 9.3.3.x jetty.
https://github.com/apache/jena/blob/jena-3.3.0/jena-fuseki2/pom.xml Now Jena uses a single version for all its artefacts. So if you use: <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-fuseki-embedded</artifactId> <version>3.4.0</version> </dependency> Then you should get the version 9.4.5.x of jetty (*). https://github.com/apache/jena/blob/jena-3.4.0/jena-fuseki2/pom.xml Hope that helps Bruno (*) assuming you also do not have another dependency before jena-fuseki-embedded in your pom.xml that is pulling another version of jetty... ________________________________ From: Erich Bremer <[email protected]> To: [email protected] Sent: Monday, 4 September 2017 8:01 AM Subject: Jetty conflict in Fuseki 2 Using this pom definition below to pull in the embedded Fuseki pulls in Jetty 9.3.3.v20150827 <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-fuseki-embedded</artifactId> <version>2.6.0</version> </dependency> However, the pom file for Fuseki lists 9.4.5.v20170502 for Jetty. Why is this? - Erich
