Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.3.x] Enable MiMa #294

Merged
merged 1 commit into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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("2.3.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
Loading