Skip to content

Commit

Permalink
Merge pull request #100 from scala-steward/update/sbt-mima-plugin-1.0.0
Browse files Browse the repository at this point in the history
Update sbt-mima-plugin to 1.0.0
  • Loading branch information
julienrf authored Aug 25, 2021
2 parents ff1a3fe + 64969ca commit 845f822
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inThisBuild(List(
url("https://github.com/alexarchambault")
)
),
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible
versionPolicyIntention := Compatibility.None
))

lazy val root = (project in file("."))
Expand All @@ -26,7 +26,7 @@ lazy val `sbt-version-policy` = project
.settings(
scriptedLaunchOpts += "-Dplugin.version=" + version.value,
scriptedBufferLog := false,
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.2"),
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.0"),
libraryDependencies ++= Seq(
"io.github.alexarchambault" %% "data-class" % "0.2.5" % Provided,
compilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ object MimaIssues {
val log = streams.value.log
val previousClassfiles = mimaPreviousClassfiles.value
val currentClassfiles = mimaCurrentClassfiles.value
val excludeAnnotations = mimaExcludeAnnotations.value
val cp = (mimaFindBinaryIssues / fullClasspath).value
val scalaVersionValue = scalaVersion.value

Expand All @@ -31,7 +32,8 @@ object MimaIssues {
cp,
"forward",
scalaVersionValue,
log
log,
excludeAnnotations.toList
)
}
.filter {
Expand Down

0 comments on commit 845f822

Please sign in to comment.