Skip to content

Commit

Permalink
Merge pull request #295 from mkurz/enable_mima_main
Browse files Browse the repository at this point in the history
Enable MiMa
  • Loading branch information
mkurz authored Nov 1, 2023
2 parents 9bca501 + b2792c1 commit b449d89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Global / onLoad := (Global / onLoad).value.andThen { s =>
s
}

val previousVersion: Option[String] = Some("3.0.0")

lazy val cachecontrol = (project in file("."))
.enablePlugins(Common)
.settings(
Expand All @@ -19,9 +21,7 @@ lazy val cachecontrol = (project in file("."))
slf4j,
slf4jSimple % Test
),
// On the main branch we don't check for incompatible changes,
// because it's ok to introduce breaking changes between minor version bumps
mimaPreviousArtifacts := Set.empty,
mimaPreviousArtifacts := previousVersion.map(organization.value %% moduleName.value % _).toSet,
headerLicense := {
Some(
HeaderLicense.Custom(
Expand Down

0 comments on commit b449d89

Please sign in to comment.