-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.sbt
55 lines (42 loc) · 1.56 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
organization := "edu.washington.cs.knowitall"
name := "multir-framework"
version := "0.3-SNAPSHOT"
fork := true
javaOptions in run += "-Xmx12G"
javaOptions in run += "-Djava.util.Arrays.useLegacyMergeSort=true"
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false}
pomExtra := (
<url>https://github.com/knowitall/MultirFramework</url>
<licenses>
<license>
<name>GNU General Public License Version 2</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/knowitall/MultirFramework</url>
<connection>scm:git://github.com/knowitall/MultirFramework.git</connection>
<developerConnection>scm:git:[email protected]:knowitall/MultirFramework.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>John Gilmer</name>
</developer>
</developers>)
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if(v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2") }
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-io" % "1.3.2",
"commons-lang" % "commons-lang" % "2.6",
"commons-cli" % "commons-cli" % "1.2",
"edu.stanford.nlp" % "stanford-corenlp" % "1.3.5",
"org.apache.derby" % "derby" % "10.10.1.1",
"org.apache.derby" % "derbyclient" % "10.9.1.0")
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource