Skip to content

Commit

Permalink
Merge pull request #266 from jrudolph/check-mima-against-more-than-on…
Browse files Browse the repository at this point in the history
…e-version

Check mima against more than one version
  • Loading branch information
ktoso authored Jul 13, 2018
2 parents 28e03bf + 65f5e49 commit 326a001
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ OsgiKeys.additionalHeaders := Map("-removeheaders" -> "Include-Resource,Private-
// Migration Manager
mimaPreviousArtifacts := (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 13)) => Set.empty
case _ => Set("io.spray" %% "spray-json" % "1.3.3")
case _ =>
Set("1.3.2", "1.3.3", "1.3.4").map { v =>
"io.spray" %% "spray-json" % v
}
})

mimaBinaryIssueFilters := Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.2
sbt.version=1.1.6

0 comments on commit 326a001

Please sign in to comment.