-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
63 lines (45 loc) · 1.79 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
organization := "org.phenoscape"
name := "owlet"
version := "2.0.0"
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
versionScheme := Some("semver-spec")
Test / publishArtifact := false
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/phenoscape/owlet"))
scalaVersion := "2.13.11"
//crossScalaVersions := Seq("2.13.11", "3")
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
Test / scalacOptions ++= Seq("-Yrangepos")
testFrameworks += new TestFramework("utest.runner.Framework")
Test / parallelExecution := false
lazy val jenaVersion = "4.9.0"
libraryDependencies ++= {
Seq(
"net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.26",
"org.apache.jena" % "jena-core" % jenaVersion,
"org.apache.jena" % "jena-arq" % jenaVersion,
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"org.slf4j" % "slf4j-log4j12" % "2.0.9" % Test,
"org.semanticweb.elk" % "elk-owlapi" % "0.4.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.1" % Test
)
}
pomExtra :=
<scm>
<url>[email protected]:phenoscape/owlet.git</url>
<connection>scm:git:[email protected]:phenoscape/owlet.git</connection>
</scm>
<developers>
<developer>
<id>balhoff</id>
<name>Jim Balhoff</name>
<email>[email protected]</email>
</developer>
</developers>