summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes.rudolph@gmail.com>2018-07-26 14:32:38 +0200
committerJohannes Rudolph <johannes.rudolph@gmail.com>2018-08-07 11:30:16 +0200
commitd2f0f997df4487b556ef39b447cac36978bf9821 (patch)
treec53214f93a11423d2f9a6e24afa8e38614b76a5c
parentcf83a40181e85140858c91fa1a8bb91456d4f10f (diff)
downloadspray-json-d2f0f997df4487b556ef39b447cac36978bf9821.tar.gz
spray-json-d2f0f997df4487b556ef39b447cac36978bf9821.tar.bz2
spray-json-d2f0f997df4487b556ef39b447cac36978bf9821.zip
Remove 2.13.0-M3 support for now
Isn't current any more and support for 2.13.0-M4 will be added later.
-rw-r--r--.travis.yml1
-rw-r--r--build.sbt10
2 files changed, 1 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 0e72ce9..f736360 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,7 +3,6 @@ scala:
- 2.10.7
- 2.11.12
- 2.12.6
- - 2.13.0-M3
script:
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test mimaReportBinaryIssues
jdk:
diff --git a/build.sbt b/build.sbt
index 5e0c75b..30dc3d2 100644
--- a/build.sbt
+++ b/build.sbt
@@ -20,14 +20,6 @@ scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "
resolvers += Opts.resolver.sonatypeReleases
-libraryDependencies ++=
- (CrossVersion.partialVersion(scalaVersion.value) match {
- case Some((2, n)) if n >= 13 =>
- Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2")
- case _ =>
- Nil
- })
-
libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) => Seq(
"org.specs2" %% "specs2-core" % "3.8.9" % "test",
@@ -75,7 +67,7 @@ mimaBinaryIssueFilters := Seq(
// publishing
///////////////
-crossScalaVersions := Seq("2.12.6", "2.10.7", "2.11.12", "2.13.0-M3")
+crossScalaVersions := Seq("2.12.6", "2.10.7", "2.11.12")
publishMavenStyle := true