diff --git a/build.sbt b/build.sbt index 8271be5..a571ed4 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ resolvers += "Sonatype OSS Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots" lazy val jenaV = "5.3.0" -lazy val jellyV = "3.4.0" +lazy val jellyV = "3.4.1" lazy val graalvmV = "24.2.2" addCommandAlias("fixAll", "scalafixAll; scalafmtAll") @@ -42,7 +42,9 @@ lazy val root = (project in file(".")) "org.slf4j" % "slf4j-simple" % "2.0.17", "org.apache.jena" % "jena-core" % jenaV, "org.apache.jena" % "jena-arq" % jenaV, - "eu.neverblink.jelly" % "jelly-jena" % jellyV, + // Jelly-JVM >= 3.4.1 includes Jena 5.5.x as a dependency, we must exclude it, because + // we use Jena 5.3.0. + ("eu.neverblink.jelly" % "jelly-jena" % jellyV).excludeAll(ExclusionRule("org.apache.jena")), "eu.neverblink.jelly" % "jelly-core-protos-google" % jellyV, "com.github.alexarchambault" %% "case-app" % "2.1.0-M30", "org.scalatest" %% "scalatest" % "3.2.19" % Test,