-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
66 lines (52 loc) · 2.35 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
65
66
organization := "edu.washington.cs.knowitall"
name := "kbp2014-slotfilling-multir"
version := "0.1"
fork := true
javaOptions in run += "-Xmx16G"
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := {_ => false}
pomExtra := (
<url>https://github.com/knowitall/KBP2014SlotFillingMultir</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/KBP2014SlotFillingMultir</url>
<connection>scm:git://github.com/knowitall/KBP2014SlotFillingMultir.git</connection>
<developerConnection>scm:git:[email protected]:knowitall/KBP2014SlotFillingMultir.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") }
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource
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",
"jp.sf.amateras.solr.scala" %% "solr-scala-client" % "0.0.7",
"edu.washington.cs.knowitall" % "multir-framework_2.10" % "0.3-SNAPSHOT" withSources() withJavadoc(),
"edu.washington.cs.knowitall.common-scala" % "common-scala_2.10" % "1.1.2",
"edu.washington.cs.knowitall.stanford-corenlp" % "stanford-ner-models" % "1.3.5",
"edu.washington.cs.knowitall.stanford-corenlp" % "stanford-postag-models" % "1.3.5",
"edu.washington.cs.knowitall.stanford-corenlp" % "stanford-dcoref-models" % "1.3.5",
"edu.washington.cs.knowitall.stanford-corenlp" % "stanford-parse-models" % "1.3.5",
"edu.washington.cs.knowitall.stanford-corenlp" % "stanford-sutime-models" % "1.3.5")
resolvers ++= Seq(
"amateras-repo" at "http://amateras.sourceforge.jp/mvn/",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")