-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.sbt
47 lines (26 loc) · 1.46 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
import com.typesafe.sbt.SbtStartScript
scalaVersion in ThisBuild := "2.10.4"
EclipseKeys.createSrc in ThisBuild := EclipseCreateSrc.Default + EclipseCreateSrc.Resource + EclipseCreateSrc.Managed // Include resources dir in eclipse classpath
EclipseKeys.withSource in ThisBuild := true // Try to include source for libs
EclipseKeys.relativizeLibs in ThisBuild := false // Doesn't seem to work for lib directory
libraryDependencies += "com.typesafe" % "config" % "1.0.2" withSources()
libraryDependencies += "org.simplex3d" %% "simplex3d-math-double" % "2.4.7" withSources()
libraryDependencies ++= Seq(
"com.github.aselab" %% "scala-activerecord" % "0.2.3",
"com.github.aselab" %% "scala-activerecord-scalatra" % "0.2.3",
"com.h2database" % "h2" % "1.3.170" // See Supported databases
)
// seq(jelasticSettings:_*)
// JelasticKeys.email in JelasticKeys.deploy := sys.env.get("JELASTIC_USERNAME").getOrElse(
// "[email protected]"
// )
// JelasticKeys.password in JelasticKeys.deploy := sys.env.get("JELASTIC_PWD").getOrElse(
// "jell4kat" // sys error "Please export JELASTIC_PWD in your shell!"
// )
//JelasticKeys.apiHoster := "app.jelastic.servint.net"
//JelasticKeys.environment in JelasticKeys.deploy := "nestor"
publishTo := None
//JelasticKeys.context in JelasticKeys.deploy := "ROOT"
//JelasticKeys.comment in JelasticKeys.deploy := "Kevin was here"
seq(SbtStartScript.startScriptForClassesSettings: _*)
net.virtualvoid.sbt.graph.Plugin.graphSettings