-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
33 lines (19 loc) · 757 Bytes
/
Copy pathbuild.sbt
File metadata and controls
33 lines (19 loc) · 757 Bytes
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
import com.typesafe.sbt.SbtStartScript
// Basic Settings
name := "scala-parser-server"
version := "0.1"
scalaVersion := "2.10.1"
// Dependencies
libraryDependencies ++= Seq(
"edu.stanford.nlp" % "stanford-parser" % "2.0.5",
"edu.stanford.nlp" % "stanford-parser" % "2.0.5" classifier "models",
"org.scalatest" %% "scalatest" % "1.9.1" % "test"
)
resolvers ++= Seq("Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"Sonatype releases" at "http://oss.sonatype.org/content/repositories/releases")
// Compile Options
scalacOptions += "-deprecation"
scalacOptions += "-feature"
scalacOptions += "-language:postfixOps"
// Start Script Plugin
seq(SbtStartScript.startScriptForJarSettings: _*)