forked from HazyResearch/bazaar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (20 loc) · 920 Bytes
/
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
import com.typesafe.sbt.SbtStartScript
name := "deepdive-nlp-parser"
version := "0.1"
scalaVersion := "2.10.3"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
libraryDependencies ++= List(
"ch.qos.logback" % "logback-classic" % "1.0.7",
"com.typesafe.play" %% "play-json" % "2.2.1",
"com.github.scopt" %% "scopt" % "3.2.0",
"edu.stanford.nlp" % "stanford-corenlp" % "3.5.1",
"edu.stanford.nlp" % "stanford-corenlp" % "3.5.1" classifier "models",
"org.scalatest" % "scalatest_2.10" % "2.0.RC2" % "test",
"org.http4s" %% "http4s-dsl" % "0.7.0",
"org.http4s" %% "http4s-jetty" % "0.7.0"
)
unmanagedJars in Compile += file("lib/stanford-srparser-2014-10-23-models.jar")
parallelExecution in Test := false
test in assembly := {}
seq(SbtStartScript.startScriptForClassesSettings: _*)