diff --git a/build.sbt b/build.sbt index f798bd7..4358667 100644 --- a/build.sbt +++ b/build.sbt @@ -29,11 +29,14 @@ scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8") scalacOptions in Test ++= Seq("-Yrangepos") +lazy val jenaVersion = "4.9.0" + libraryDependencies ++= { Seq( "org.scalaz" %% "scalaz-core" % "7.3.7", "net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.26", - "org.apache.jena" % "apache-jena-libs" % "4.9.0", + "org.apache.jena" % "jena-core" % jenaVersion, + "org.apache.jena" % "jena-arq" % jenaVersion, "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", "org.scala-lang.modules" %% "scala-xml" % "2.2.0", "org.slf4j" % "slf4j-log4j12" % "1.7.36" % Test,