We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a0a83 commit 497a660Copy full SHA for 497a660
build.sbt
@@ -42,7 +42,9 @@ lazy val root = (project in file("."))
42
"org.slf4j" % "slf4j-simple" % "2.0.17",
43
"org.apache.jena" % "jena-core" % jenaV,
44
"org.apache.jena" % "jena-arq" % jenaV,
45
- "eu.neverblink.jelly" % "jelly-jena" % jellyV,
+ // Jelly-JVM >= 3.4.1 includes Jena 5.5.x as a dependency, we must exclude it, because
46
+ // we use Jena 5.3.0.
47
+ ("eu.neverblink.jelly" % "jelly-jena" % jellyV).excludeAll(ExclusionRule("org.apache.jena")),
48
"eu.neverblink.jelly" % "jelly-core-protos-google" % jellyV,
49
"com.github.alexarchambault" %% "case-app" % "2.1.0-M30",
50
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
0 commit comments