-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
46 lines (36 loc) · 1.57 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.startscript.StartScriptPlugin
seq(StartScriptPlugin.startScriptForClassesSettings: _*)
name := "TrailHead"
version := "1.1"
scalaVersion := "2.10.0"
scalaSource in Compile <<= baseDirectory(_ / "src")
scalacOptions ++= Seq("-unchecked", "-Ywarn-dead-code", "-deprecation")
libraryDependencies ++= Seq(
// other dependencies here
// pick and choose:
"org.scalanlp" %% "breeze-math" % "0.2",
"org.scalanlp" %% "breeze-learn" % "0.2",
"org.scalanlp" %% "breeze-process" % "0.2",
"net.databinder" %% "unfiltered-filter" % "0.6.7",
"net.databinder" %% "unfiltered-json" % "0.6.7",
"net.databinder" %% "unfiltered-netty-server" % "0.6.7",
"com.dongxiguo" %% "fastring" % "0.2.1",
"org.mongodb" %% "casbah" % "2.5.0",
"com.novus" %% "salat" % "1.9.2-SNAPSHOT",
"joda-time" % "joda-time" % "2.2",
"org.joda" % "joda-convert" % "1.2"
)
resolvers ++= Seq(
// other resolvers here
// if you want to use snapshot builds (currently 0.2-SNAPSHOT), use this.
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
)
// The main class
mainClass in (Compile, run) := Some("web.Main")
//mainClass in (Compile, run) := Some("paper.Main")
// The sources to be watched
// watchSources <+= baseDirectory map { _ / "paper" }
// watchSources <+= baseDirectory map { _ / "web" }
// watchSources <+= baseDirectory map { _ / "paper/Linking" }
// watchSources <+= baseDirectory map { _ / "paper/Loading" }
// watchSources <+= baseDirectory map { _ / "paper/Parsing" }