This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git
The following commit(s) were added to refs/heads/main by this push:
new 52bad1de6 validate slick mima state for Scala 2 (#721)
52bad1de6 is described below
commit 52bad1de6d30254756aee3f1a04b104549ff2ee3
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Jul 4 09:42:48 2024 +0100
validate slick mima state for Scala 2 (#721)
* validate slick mima state for Scala 2
* Update build.sbt
* Update build.sbt
---
build.sbt | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/build.sbt b/build.sbt
index a2c84cc6c..ef0266440 100644
--- a/build.sbt
+++ b/build.sbt
@@ -476,7 +476,7 @@ lazy val billOfMaterials = Project("bill-of-materials",
file("bill-of-materials"
description := s"${description.value} (depending on Scala
${CrossVersion.binaryScalaVersion(scalaVersion.value)})")
val mimaCompareVersion = "1.0.2"
-val noMimaChecks = Set("slick", "couchbase3", "jakartams",
"aws.api.pekko.http")
+val noMimaChecks = Set("couchbase3", "jakartams", "aws.api.pekko.http")
def pekkoConnectorProject(projectId: String,
moduleName: String,
@@ -490,7 +490,8 @@ def pekkoConnectorProject(projectId: String,
licenses := List(License.Apache2),
AutomaticModuleName.settings(s"pekko.stream.connectors.$moduleName"),
mimaPreviousArtifacts := {
- if (noMimaChecks.contains(moduleName)) {
+ if (noMimaChecks.contains(moduleName) ||
+ (moduleName == "slick" && scalaVersion.value.startsWith("3"))) {
Set.empty
} else {
Set(organization.value %% name.value % mimaCompareVersion)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]