Skip to content

Commit

Permalink
Dynamic versioning via dynver (#953)
Browse files Browse the repository at this point in the history
Co-authored-by: Matěj Černý <[email protected]>
  • Loading branch information
matejcerny authored May 24, 2024
1 parent b3c5d1e commit 3e54a07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ val commonSettings = List(
libraryDependencies ++= commonDependencies(scalaVersion.value),
resolvers += "Apache public" at "https://repository.apache.org/content/groups/public/",
scalafmtOnCompile := true,
mimaPreviousArtifacts := Set(organization.value %% moduleName.value % "5.1.0")
mimaPreviousArtifacts := previousStableVersion.value.map(organization.value %% moduleName.value % _).toSet
)

def CoreDependencies(scalaVersionStr: String): List[ModuleID] =
Expand Down Expand Up @@ -95,7 +95,8 @@ lazy val noPublish = List(
publish := {},
publishLocal := {},
publishArtifact := false,
publish / skip := true
publish / skip := true,
crossScalaVersions := Nil
)

lazy val `fs2-rabbit-root` = project
Expand Down

0 comments on commit 3e54a07

Please sign in to comment.