-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathbuild.sbt
More file actions
36 lines (25 loc) · 1.17 KB
/
Copy pathbuild.sbt
File metadata and controls
36 lines (25 loc) · 1.17 KB
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
name := "figer"
version := "0"
scalaVersion := "2.10.1"
javaOptions += "-Xmx24G"
fork in run := true
val stanfordNlp = "edu.stanford.nlp" % "stanford-corenlp" % "1.3.4" artifacts (Artifact("stanford-corenlp", "models"), Artifact("stanford-corenlp"))
//val stanfordNlp = "edu.stanford.nlp" % "stanford-corenlp" % "3.4" artifacts (Artifact("stanford-corenlp", "models"), Artifact("stanford-corenlp"))
libraryDependencies ++= Seq(
"commons-lang" % "commons-lang" % "2.4" ,
stanfordNlp,
"xom" % "xom" % "1.2.5",
"de.jollyday" % "jollyday" % "0.4.7",
"joda-time" % "joda-time" % "2.1",
"net.sf.trove4j" % "trove4j" % "3.0.1",
"junit" % "junit" % "4.8.1",
"com.google.protobuf" % "protobuf-java" % "2.4.1",
"org.slf4j" % "slf4j-api" % "1.5.8",
"org.slf4j" % "slf4j-log4j12" % "1.5.8",
"javax.servlet" % "javax.servlet-api" % "3.0.1" % "provided"
)
jetty()
webappSrc in webapp <<= (sourceDirectory in Compile) map { _ / "java/edu/washington/cs/figer/web/webapp" }
resolvers ++= Seq( "Oracle Releases" at "http://download.oracle.com/maven")
EclipseKeys.projectFlavor := EclipseProjectFlavor.Java
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource