summaryrefslogtreecommitdiff
path: root/build.sbt
blob: 23ac49e9867e2206669884b0338e527c3a2e52ca (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)

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

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