-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
63 lines (49 loc) · 2.87 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
enablePlugins(JavaAppPackaging)
enablePlugins(BuildInfoPlugin)
enablePlugins(GitVersioning)
enablePlugins(LauncherJarPlugin)
organization := "org.monarchinitiative"
name := "dosdp-tools"
version := "0.19.3"
scalaVersion := "2.13.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
Compile / mainClass := Some("org.monarchinitiative.dosdp.cli.Main")
javaOptions += "-Xmx8G"
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
val gitCommitString = SettingKey[String]("gitCommit")
gitCommitString := git.gitHeadCommit.value.getOrElse("Not Set")
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion, gitCommitString)
buildInfoPackage := "org.monarchinitiative.dosdp.cli"
val zioVersion = "1.0.14"
libraryDependencies ++= {
Seq(
"dev.zio" %% "zio" % zioVersion,
"dev.zio" %% "zio-streams" % zioVersion,
"com.github.alexarchambault" %% "case-app" % "2.0.6",
"net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.22",
"org.phenoscape" %% "scowl" % "1.4.1",
"org.phenoscape" %% "owlet" % "1.9" exclude("org.slf4j", "slf4j-log4j12"),
"org.semanticweb.elk" % "elk-owlapi" % "0.4.3" exclude("org.slf4j", "slf4j-log4j12"),
"net.sourceforge.owlapi" % "org.semanticweb.hermit" % "1.4.3.456",
"net.sourceforge.owlapi" % "jfact" % "4.0.4",
"org.geneontology" %% "owl-diff" % "1.2.2",
"io.circe" %% "circe-yaml" % "0.14.1",
"io.circe" %% "circe-core" % "0.13.0",
"io.circe" %% "circe-generic" % "0.13.0",
"io.circe" %% "circe-parser" % "0.13.0",
"org.obolibrary.robot" % "robot-core" % "1.8.3"
exclude("ch.qos.logback", "logback-classic")
exclude("org.slf4j", "slf4j-log4j12")
exclude("org.geneontology", "whelk_2.12")
exclude("org.geneontology", "whelk-owlapi_2.12")
exclude("org.geneontology", "owl-diff_2.12"),
"com.github.pathikrit" %% "better-files" % "3.9.1",
"org.apache.jena" % "apache-jena-libs" % "4.5.0" exclude("org.slf4j", "slf4j-log4j12"),
"com.github.tototoshi" %% "scala-csv" % "1.3.10",
"commons-codec" % "commons-codec" % "1.15",
"dev.zio" %% "zio-logging" % "0.5.14",
"dev.zio" %% "zio-logging-slf4j-bridge" % "0.5.14",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test
)
}