mirror of https://github.com/sbt/sbt.git
Upgrade to sbt-mima 0.1.14
This commit is contained in:
parent
d5a10923f8
commit
f9e0dc0a48
11
build.sbt
11
build.sbt
|
|
@ -2,10 +2,6 @@ import Util._
|
||||||
import Dependencies._
|
import Dependencies._
|
||||||
import Sxr.sxr
|
import Sxr.sxr
|
||||||
|
|
||||||
import com.typesafe.tools.mima.core._, ProblemFilters._
|
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys.{ binaryIssueFilters, previousArtifact }
|
|
||||||
import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
|
|
||||||
|
|
||||||
// ThisBuild settings take lower precedence,
|
// ThisBuild settings take lower precedence,
|
||||||
// but can be shared across the multi projects.
|
// but can be shared across the multi projects.
|
||||||
def buildLevelSettings: Seq[Setting[_]] =
|
def buildLevelSettings: Seq[Setting[_]] =
|
||||||
|
|
@ -52,11 +48,12 @@ def commonSettings: Seq[Setting[_]] =
|
||||||
crossScalaVersions := Seq(baseScalaVersion),
|
crossScalaVersions := Seq(baseScalaVersion),
|
||||||
bintrayPackage := (bintrayPackage in ThisBuild).value,
|
bintrayPackage := (bintrayPackage in ThisBuild).value,
|
||||||
bintrayRepository := (bintrayRepository in ThisBuild).value,
|
bintrayRepository := (bintrayRepository in ThisBuild).value,
|
||||||
mimaDefaultSettings,
|
|
||||||
publishArtifact in Test := false,
|
publishArtifact in Test := false,
|
||||||
mimaPreviousArtifacts := Set.empty, // Set(organization.value % moduleName.value % "1.0.0"),
|
mimaPreviousArtifacts := Set.empty, // Set(organization.value % moduleName.value % "1.0.0"),
|
||||||
mimaBinaryIssueFilters ++= Seq(
|
mimaBinaryIssueFilters ++= {
|
||||||
)
|
import com.typesafe.tools.mima.core._, ProblemFilters._
|
||||||
|
Seq()
|
||||||
|
}
|
||||||
) flatMap (_.settings)
|
) flatMap (_.settings)
|
||||||
|
|
||||||
def minimalSettings: Seq[Setting[_]] =
|
def minimalSettings: Seq[Setting[_]] =
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ scalaVersion := "2.10.6"
|
||||||
scalacOptions ++= Seq("-feature", "-language:postfixOps")
|
scalacOptions ++= Seq("-feature", "-language:postfixOps")
|
||||||
|
|
||||||
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
|
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
|
||||||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.11")
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.14")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-javaversioncheck" % "0.1.0")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-javaversioncheck" % "0.1.0")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue