mirror of https://github.com/sbt/sbt.git
Disable mima checks for 2.12.0-RC2 for now
No previous version published
This commit is contained in:
parent
5f2daac118
commit
7e836b51be
18
build.sbt
18
build.sbt
|
|
@ -118,7 +118,14 @@ lazy val core = crossProject
|
||||||
"org.scalaz" %%% "scalaz-core" % scalazVersion,
|
"org.scalaz" %%% "scalaz-core" % scalazVersion,
|
||||||
"com.lihaoyi" %%% "fastparse" % "0.4.2"
|
"com.lihaoyi" %%% "fastparse" % "0.4.2"
|
||||||
),
|
),
|
||||||
mimaPreviousArtifacts := Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion),
|
mimaPreviousArtifacts := {
|
||||||
|
scalaBinaryVersion.value match {
|
||||||
|
case "2.10" | "2.11" =>
|
||||||
|
Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion)
|
||||||
|
case _ =>
|
||||||
|
Set()
|
||||||
|
}
|
||||||
|
},
|
||||||
mimaBinaryIssueFilters ++= {
|
mimaBinaryIssueFilters ++= {
|
||||||
import com.typesafe.tools.mima.core._
|
import com.typesafe.tools.mima.core._
|
||||||
|
|
||||||
|
|
@ -274,7 +281,14 @@ lazy val cache = project
|
||||||
.settings(
|
.settings(
|
||||||
name := "coursier-cache",
|
name := "coursier-cache",
|
||||||
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % scalazVersion,
|
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % scalazVersion,
|
||||||
mimaPreviousArtifacts := Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion),
|
mimaPreviousArtifacts := {
|
||||||
|
scalaBinaryVersion.value match {
|
||||||
|
case "2.10" | "2.11" =>
|
||||||
|
Set("com.github.alexarchambault" %% moduleName.value % binaryCompatibilityVersion)
|
||||||
|
case _ =>
|
||||||
|
Set()
|
||||||
|
}
|
||||||
|
},
|
||||||
mimaBinaryIssueFilters ++= {
|
mimaBinaryIssueFilters ++= {
|
||||||
import com.typesafe.tools.mima.core._
|
import com.typesafe.tools.mima.core._
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue