-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
47 lines (34 loc) · 1.64 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
import com.typesafe.sbt.SbtStartScript
name := "2015-ccg-parsing"
organization := "dhg"
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.2-incubating",
"org.scalanlp" % "breeze_2.11" % "0.11.2",
"org.scalanlp" % "breeze-natives_2.11" % "0.11.2",
"org.apache.commons" % "commons-math3" % "3.4",
"org.scalaz" %% "scalaz-core" % "7.0.6", // "7.1.0"
"com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2",
"org.slf4j" % "slf4j-log4j12" % "1.7.9",
"org.jfree" % "jfreechart" % "1.0.19",
"org.abego.treelayout" % "org.abego.treelayout.netbeans" % "1.0.1" exclude("org.netbeans.api", "org-netbeans-api-visual"),
"org.codeartisans.thirdparties.swing" % "org-netbeans-api-visual" % "2.23.1",
"junit" % "junit" % "4.11" % "test",
"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
scalacOptions ++= Seq("-deprecation", "-feature")