-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
39 lines (28 loc) · 1.27 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
import com.typesafe.sbt.SbtStartScript
name := "low-resource-pos-tagging-2014"
version := "0.0.1"
scalaVersion := "2.11.7"
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases",
"OpenNLP repo" at "http://opennlp.sourceforge.net/maven2"
)
libraryDependencies ++= Seq(
"org.apache.opennlp" % "opennlp-tools" % "1.5.3" exclude("org.apache.opennlp", "opennlp-maxent"),
//"org.scalanlp" % "junto" % "1.6.0",
"org.scalaz" %% "scalaz-core" % "7.0.6",
"org.slf4j" % "slf4j-simple" % "1.7.7",
"junit" % "junit" % "4.11",
"com.novocode" % "junit-interface" % "0.10" % "test") //switch to ScalaTest at some point...
// Junto dependencies:
libraryDependencies ++= Seq(
"org.jgrapht" % "jgrapht-jdk1.5" % "0.7.3",
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"com.typesafe.akka" % "akka-actor_2.11" % "2.3.6",
"org.rogach" %% "scallop" % "0.9.5",
"net.sf.trove4j" % "trove4j" % "3.0.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0")
seq(SbtStartScript.startScriptForClassesSettings: _*)
SbtStartScript.stage in Compile := Unit
//mainClass in (Compile, run) := None
scalacOptions ++= Seq("-deprecation", "-feature")