summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
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..23ac49e
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,18 @@
+name := "crashbox"
+
+crossScalaVersions in ThisBuild := List("2.12.1")
+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(http)
+
+lazy val http = (project in file("crashbox-http"))
+
+lazy val worker = (project in file("crashbox-worker"))