mirror of https://github.com/sbt/sbt.git
Upgrade to mima 0.1.15 & exclude a false positive
This commit is contained in:
parent
3104ae0d57
commit
96b9d27c73
|
|
@ -1,6 +1,6 @@
|
||||||
import Dependencies._
|
import Dependencies._
|
||||||
import Util._
|
import Util._
|
||||||
// import com.typesafe.tools.mima.core._, ProblemFilters._
|
import com.typesafe.tools.mima.core._, ProblemFilters._
|
||||||
|
|
||||||
def baseVersion = "1.0.0-SNAPSHOT"
|
def baseVersion = "1.0.0-SNAPSHOT"
|
||||||
def internalPath = file("internal")
|
def internalPath = file("internal")
|
||||||
|
|
@ -106,6 +106,11 @@ lazy val utilLogging = (project in internalPath / "util-logging").
|
||||||
else old(tpe)
|
else old(tpe)
|
||||||
},
|
},
|
||||||
mimaSettings,
|
mimaSettings,
|
||||||
|
mimaBinaryIssueFilters ++= Seq(
|
||||||
|
// abstract method SuccessEventFormat()sjsonnew.JsonFormat in trait sbt.internal.util.codec.SuccessEventFormats is inherited by class JsonProtocol in current version.
|
||||||
|
// I think this is a false positive: https://github.com/typesafehub/migration-manager/issues/187
|
||||||
|
ProblemFilters.exclude[InheritedNewAbstractMethodProblem]("sbt.internal.util.codec.SuccessEventFormats.SuccessEventFormat")
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Relation
|
// Relation
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.3")
|
addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.3")
|
||||||
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M9")
|
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M9")
|
||||||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.14")
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.15")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue