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.
1 parent f12cfd5 commit e0d69f3Copy full SHA for e0d69f3
build.sbt
@@ -91,7 +91,11 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
91
// don't use fatal warnings in tests
92
scalacOptions in Test ~= (_ filterNot (_ == "-Xfatal-warnings")),
93
94
- mimaPreviousArtifacts := Set("org.scalacheck" %% "scalacheck" % "1.14.0"),
+ mimaPreviousArtifacts := {
95
+ // TODO: re-enable MiMa for 2.13.0-M4 once there is a release out
96
+ if (scalaMajorVersion.value == 13) Set()
97
+ else Set("org.scalacheck" %% "scalacheck" % "1.14.0")
98
+ },
99
100
publishTo := {
101
val nexus = "https://oss.sonatype.org/"
0 commit comments