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