File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
sbt-version-policy/src/main/scala/sbtversionpolicy/internal Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ inThisBuild(List(
11
11
url(" https://github.com/alexarchambault" )
12
12
)
13
13
),
14
- versionPolicyIntention := Compatibility .BinaryAndSourceCompatible
14
+ versionPolicyIntention := Compatibility .None
15
15
))
16
16
17
17
lazy val root = (project in file(" ." ))
@@ -26,7 +26,7 @@ lazy val `sbt-version-policy` = project
26
26
.settings(
27
27
scriptedLaunchOpts += " -Dplugin.version=" + version.value,
28
28
scriptedBufferLog := false ,
29
- addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 0.9.2 " ),
29
+ addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 1.0.0 " ),
30
30
libraryDependencies ++= Seq (
31
31
" io.github.alexarchambault" %% " data-class" % " 0.2.5" % Provided ,
32
32
compilerPlugin(" org.scalamacros" % " paradise" % " 2.1.1" cross CrossVersion .full)
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ object MimaIssues {
15
15
val log = streams.value.log
16
16
val previousClassfiles = mimaPreviousClassfiles.value
17
17
val currentClassfiles = mimaCurrentClassfiles.value
18
+ val excludeAnnotations = mimaExcludeAnnotations.value
18
19
val cp = (mimaFindBinaryIssues / fullClasspath).value
19
20
val scalaVersionValue = scalaVersion.value
20
21
@@ -31,7 +32,8 @@ object MimaIssues {
31
32
cp,
32
33
" forward" ,
33
34
scalaVersionValue,
34
- log
35
+ log,
36
+ excludeAnnotations.toList
35
37
)
36
38
}
37
39
.filter {
You can’t perform that action at this time.
0 commit comments