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 8eb784b + 3d419d9 commit 2edce8bCopy full SHA for 2edce8b
build.sbt
@@ -40,12 +40,11 @@ val joda = Seq(
40
41
// Common settings
42
43
+val previousVersion: Option[String] = Some("2.10.0")
44
+
45
// Do not check for previous JS artifacts for upgrade to Scala.js 1.0 because no sjs1 artifacts exist
46
def playJsonMimaSettings = Seq(
- mimaPreviousArtifacts := Set(
- organization.value %%% name.value % previousStableVersion.value
47
- .getOrElse(throw new Error("Unable to determine previous version"))
48
- ),
+ mimaPreviousArtifacts := previousVersion.map(organization.value %%% moduleName.value % _).toSet,
49
mimaBinaryIssueFilters ++= Seq(
50
),
51
)
0 commit comments