Skip to content

Commit

Permalink
Depend on specific Jena libs. (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
balhoff authored Aug 18, 2023
1 parent 7837dff commit 9952bfd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9952bfd

Please sign in to comment.