Skip to content

Commit 2c001c1

Browse files
committed
temporary disable MiMa check for Scala 3 (there is not 1.0.4 artifact)
1 parent 37f6b92 commit 2c001c1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.sbt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ scalacOptions := Seq(
1717
)
1818
autoAPIMappings := true
1919
versionScheme := Some("early-semver")
20-
publishTo := Some(Resolver.evolutionReleases) // sbt-release
20+
publishTo := Some(Resolver.evolutionReleases) // sbt-artifactory-plugin
2121
versionPolicyIntention := Compatibility.BinaryCompatible // sbt-version-policy
2222

2323
libraryDependencies ++= Seq(
@@ -31,3 +31,8 @@ licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT")))
3131
//addCommandAlias("check", "scalafixEnable; scalafixAll --check; all versionPolicyCheck scalafmtCheckAll scalafmtSbtCheck")
3232
addCommandAlias("check", "versionPolicyCheck")
3333
addCommandAlias("build", "all compile test")
34+
35+
// TODO: remove this temporary workaround after v1.0.5
36+
versionPolicyCheck / skip := {
37+
scalaVersion.value == "3.3.4"
38+
}

0 commit comments

Comments
 (0)