aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-07-24 17:46:34 +0200
committeradamw <adam@warski.org>2017-07-24 17:46:34 +0200
commit8e2e4d0e93c33b61ec7aae3edb992400f77d51a3 (patch)
tree269aad3e397145b39956038229dc5ee28e3547a9 /build.sbt
parent0299feaebb4b72bbcfc62af23ced1f297cf26294 (diff)
downloadsttp-8e2e4d0e93c33b61ec7aae3edb992400f77d51a3.tar.gz
sttp-8e2e4d0e93c33b61ec7aae3edb992400f77d51a3.tar.bz2
sttp-8e2e4d0e93c33b61ec7aae3edb992400f77d51a3.zip
Splitting the model package into files, adding Xlint to compiler options
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index d2d3dc7..803c072 100644
--- a/build.sbt
+++ b/build.sbt
@@ -3,7 +3,7 @@ val commonSettings = Seq(
version := "0.0.2",
scalaVersion := "2.12.2",
crossScalaVersions := Seq(scalaVersion.value, "2.11.8"),
- scalacOptions ++= Seq("-unchecked", "-deprecation"),
+ scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xlint"),
scalafmtOnCompile := true,
scalafmtVersion := "1.0.0",
releaseEarlyWith := SonatypePublisher,