Skip to content

Commit

Permalink
Merge pull request #794 from Banno/fix-publishing
Browse files Browse the repository at this point in the history
Reenable MimaPlugin at root
  • Loading branch information
rossabaker authored Oct 9, 2023
2 parents a54baa3 + 4636836 commit 78be825
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import org.typelevel.sbt.site.GenericSiteSettings
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / crossScalaVersions := List(scalaVersion.value)
ThisBuild / tlBaseVersion := "5.0"
ThisBuild / tlMimaPreviousVersions ~= { versions =>
val failedReleases = Set("5.0.1")
versions -- failedReleases
}
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
ThisBuild / githubWorkflowTargetBranches := Seq("*", "series/*")
ThisBuild / githubWorkflowBuildPreamble := Seq(
Expand Down Expand Up @@ -48,7 +52,6 @@ val V = new {

lazy val kafka4s = project
.in(file("."))
.disablePlugins(MimaPlugin)
.enablePlugins(NoPublishPlugin)
.aggregate(core, avro4s, vulcan, examples, site)

Expand Down

0 comments on commit 78be825

Please sign in to comment.