summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-03-31 16:38:49 -0700
committerJakob Odersky <jakob@odersky.com>2017-03-31 16:38:49 -0700
commit8a4ebe76200a2e570bd959d8780c3c0a0bf71d5c (patch)
tree3b0790d7d97f3bb2faf1981df35b5bb44ebb6015 /build.sbt
downloadcrashbox-ci-8a4ebe76200a2e570bd959d8780c3c0a0bf71d5c.tar.gz
crashbox-ci-8a4ebe76200a2e570bd959d8780c3c0a0bf71d5c.tar.bz2
crashbox-ci-8a4ebe76200a2e570bd959d8780c3c0a0bf71d5c.zip
Initial commit
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt18
1 files changed, 18 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..b0931e4
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,18 @@
+name := "crashbox"
+
+//TODO: update scala version after
+//https://github.com/scala-ide/scala-refactoring/issues/180 is fixed
+crossScalaVersions in ThisBuild := List("2.12.0")
+scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
+scalacOptions in ThisBuild ++= Seq(
+ "-deprecation",
+ "-feature",
+ //"-Xfatal-warnings",
+ "-Xlint"
+)
+fork in ThisBuild := true
+cancelable in Global := true
+
+lazy val root = (project in file(".")).aggregate(server)
+
+lazy val server = (project in file("crashboxd"))