-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
22 lines (17 loc) · 950 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := "orr-reg"
version := "0.2.0"
scalaVersion := "2.11.6"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-language:_")
libraryDependencies ++= Seq(
"org.apache.jena" % "jena" % "3.2.0",
"org.apache.jena" % "jena-tdb" % "3.2.0", //(*)
"net.sourceforge.owlapi" % "owlapi-distribution" % "5.0.5",
"com.github.scopt" %% "scopt" % "3.5.0",
"org.scalaj" %% "scalaj-http" % "2.3.0",
"org.json4s" %% "json4s-native" % "3.3.0",
"org.json4s" %% "json4s-ext" % "3.3.0",
"joda-time" % "joda-time" % "2.9.7"
)
//(*) https://jena.apache.org/download/maven.html:
// "...use of <type>pom</type> ... does not work in all tools.
// An alternative is to depend on jena-tdb, which will pull in the other artifacts."