Skip to content

Commit

Permalink
temporary disable MiMa check for Scala 3 (there is not 1.0.4 artifact)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-git committed Nov 8, 2024
1 parent 37f6b92 commit 2c001c1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ scalacOptions := Seq(
)
autoAPIMappings := true
versionScheme := Some("early-semver")
publishTo := Some(Resolver.evolutionReleases) // sbt-release
publishTo := Some(Resolver.evolutionReleases) // sbt-artifactory-plugin
versionPolicyIntention := Compatibility.BinaryCompatible // sbt-version-policy

libraryDependencies ++= Seq(
Expand All @@ -31,3 +31,8 @@ licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT")))
//addCommandAlias("check", "scalafixEnable; scalafixAll --check; all versionPolicyCheck scalafmtCheckAll scalafmtSbtCheck")
addCommandAlias("check", "versionPolicyCheck")
addCommandAlias("build", "all compile test")

// TODO: remove this temporary workaround after v1.0.5
versionPolicyCheck / skip := {
scalaVersion.value == "3.3.4"
}

0 comments on commit 2c001c1

Please sign in to comment.