aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes.rudolph@gmail.com>2017-08-17 12:10:02 +0200
committerJohannes Rudolph <johannes.rudolph@gmail.com>2017-08-17 12:10:02 +0200
commitf9cdfdd4afa321057aaa43b5320a2bc068c02a0b (patch)
tree9f59b492a9a4d0f335c528d748099f000f653a04
parent005a519175070d3c8a7b4f0732810a572d3ccc35 (diff)
downloadsbt-boilerplate-f9cdfdd4afa321057aaa43b5320a2bc068c02a0b.tar.gz
sbt-boilerplate-f9cdfdd4afa321057aaa43b5320a2bc068c02a0b.tar.bz2
sbt-boilerplate-f9cdfdd4afa321057aaa43b5320a2bc068c02a0b.zip
add crossSbtVersions to 0.13.16 and 1.0.0
-rw-r--r--build.sbt9
1 files changed, 2 insertions, 7 deletions
diff --git a/build.sbt b/build.sbt
index f5593fe..c2237e6 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,6 +1,7 @@
lazy val root = (project in file("."))
.settings(
sbtPlugin := true,
+ crossSbtVersions := Vector("0.13.16", "1.0.0"),
name := "sbt-boilerplate",
organization := "io.spray",
version := "0.6.1-SNAPSHOT",
@@ -12,13 +13,7 @@ lazy val root = (project in file("."))
licenses in GlobalScope += "BSD" -> url("https://github.com/sbt/sbt-boilerplate/raw/master/LICENSE"),
scalacOptions := Seq("-deprecation", "-encoding", "utf8"),
- libraryDependencies += {
- scalaBinaryVersion.value match {
- case v if v startsWith "2.9." => "org.specs2" % "specs2_2.9.3" % "1.12.4.1" % Test
- case "2.10" => "org.specs2" %% "specs2" % "2.4.17" % Test
- case "2.12" => "org.specs2" %% "specs2" % "2.4.17" % Test
- }
- },
+ libraryDependencies += "org.specs2" %% "specs2-core" % "3.9.4" % Test,
ScalariformSupport.formatSettings,
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
)