summaryrefslogtreecommitdiff
path: root/build.sbt
blob: aa14fd3c320ef4878b7c0da159ba18c9db1601ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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, worker)

lazy val http = (project in file("crashbox-http"))

lazy val worker = (project in file("crashbox-worker"))