-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
64 lines (47 loc) · 1.85 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
64
enablePlugins(JavaAppPackaging)
organization := "org.geneontology"
name := "arachne"
version := "1.3"
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")
}
publishArtifact in Test := false
licenses := Seq("BSD-3-Clause" -> url("https://opensource.org/licenses/BSD-3-Clause"))
homepage := Some(url("https://github.com/balhoff/arachne"))
scalaVersion := "2.13.10"
//crossScalaVersions := Seq("2.12.15", "2.13.6")
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
scalacOptions in Test ++= Seq("-Yrangepos")
mainClass in Compile := Some("org.geneontology.rules.cli.Main")
javaOptions += "-Xmx10G"
fork in Test := true
libraryDependencies ++= {
Seq(
"org.scalaz" %% "scalaz-core" % "7.3.7",
"org.apache.jena" % "apache-jena-libs" % "3.17.0" pomOnly(),
"org.geneontology" %% "owl-to-rules" % "0.3.8",
"net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.15",
"org.backuity.clist" %% "clist-core" % "3.5.1",
"org.backuity.clist" %% "clist-macros" % "3.5.1" % "provided",
"com.outr" %% "scribe-slf4j" % "2.8.3",
"org.scalatest" %% "scalatest" % "3.2.14" % Test
)
}
pomExtra := (
<scm>
<url>[email protected]:balhoff/arachne.git</url>
<connection>scm:git:[email protected]:balhoff/arachne.git</connection>
</scm>
<developers>
<developer>
<id>balhoff</id>
<name>Jim Balhoff</name>
<email>[email protected]</email>
</developer>
</developers>
)