We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0eb634 + 9f79993 commit 86d0525Copy full SHA for 86d0525
1 file changed
build.sbt
@@ -18,13 +18,10 @@ Global / onLoad := (Global / onLoad).value.andThen { s =>
18
s
19
}
20
21
+val previousVersion: Option[String] = Some("8.0.0-M1")
22
+
23
lazy val mimaSettings = Seq(
- mimaPreviousArtifacts :=
- Set(
24
- organization.value %% name.value % previousStableVersion.value.getOrElse(
25
- throw new Error("Unable to determine previous version")
26
- )
27
- ),
+ mimaPreviousArtifacts := previousVersion.map(organization.value %% moduleName.value % _).toSet,
28
mimaBinaryIssueFilters ++= Seq(
29
)
30
0 commit comments