summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorMagnolia K <magnolia.k@icloud.com>2017-01-22 18:03:09 +0900
committerMagnolia K <magnolia.k@icloud.com>2017-01-22 18:03:09 +0900
commit1f3c5bbc118b09ec62e926a7db44b7373916c784 (patch)
tree438e351667fa7ebd2f7c38f665688874559d6fda /build.sbt
parent537cb5bca7eb73750fc2e86e4a2ea6605714482b (diff)
downloadspray-json-1f3c5bbc118b09ec62e926a7db44b7373916c784.tar.gz
spray-json-1f3c5bbc118b09ec62e926a7db44b7373916c784.tar.bz2
spray-json-1f3c5bbc118b09ec62e926a7db44b7373916c784.zip
Enabled Xlint scala option
and in addition, the cause of the newly outputted warning message was removed.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index de28193..5352165 100644
--- a/build.sbt
+++ b/build.sbt
@@ -16,7 +16,7 @@ licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.
scalaVersion := "2.11.8"
-scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "-encoding", "utf8")
+scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "-Xlint", "-encoding", "utf8")
resolvers += Opts.resolver.sonatypeReleases
@@ -46,7 +46,7 @@ OsgiKeys.additionalHeaders := Map("-removeheaders" -> "Include-Resource,Private-
// publishing
///////////////
-crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0")
+crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.1")
scalaBinaryVersion <<= scalaVersion(sV => if (CrossVersion.isStable(sV)) CrossVersion.binaryScalaVersion(sV) else sV)
@@ -70,4 +70,4 @@ pomExtra :=
<developers>
<developer><id>sirthias</id><name>Mathias Doenitz</name></developer>
<developer><id>jrudolph</id><name>Johannes Rudolph</name></developer>
- </developers> \ No newline at end of file
+ </developers>