You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2022/11/10 22:17:57 UTC

[incubator-pekko-connectors-kafka] branch main updated: remove mima checks

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/incubator-pekko-connectors-kafka.git


The following commit(s) were added to refs/heads/main by this push:
     new 5d6a592b remove mima checks
     new e35ff9ae Merge pull request #1 from mdedetrich/remove-mima-checks
5d6a592b is described below

commit 5d6a592bc6d310cd9290dae6764582a12ea0eee7
Author: Matthew de Detrich <ma...@aiven.io>
AuthorDate: Thu Nov 10 21:20:57 2022 +0100

    remove mima checks
---
 build.sbt | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/build.sbt b/build.sbt
index 8f6805c0..0a1ddff9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -190,10 +190,7 @@ lazy val core = project
         "com.typesafe.akka" %% "akka-discovery" % akkaVersion % Provided,
         "org.apache.kafka" % "kafka-clients" % kafkaVersion
       ),
-    mimaPreviousArtifacts := Set(
-        organization.value %% name.value % previousStableVersion.value
-          .getOrElse(throw new Error("Unable to determine previous version"))
-      ),
+    mimaPreviousArtifacts := Set.empty, //temporarily disable mima checks
     mimaBinaryIssueFilters += ProblemFilters.exclude[Problem]("akka.kafka.internal.*")
   )
 
@@ -213,10 +210,7 @@ lazy val testkit = project
         "junit" % "junit" % "4.13.2" % Provided,
         "org.junit.jupiter" % "junit-jupiter-api" % JupiterKeys.junitJupiterVersion.value % Provided
       ),
-    mimaPreviousArtifacts := Set(
-        organization.value %% name.value % previousStableVersion.value
-          .getOrElse(throw new Error("Unable to determine previous version"))
-      ),
+    mimaPreviousArtifacts := Set.empty, //temporarily disable mima checks
     mimaBinaryIssueFilters += ProblemFilters.exclude[Problem]("akka.kafka.testkit.internal.*")
   )
 
@@ -232,10 +226,7 @@ lazy val clusterSharding = project
     libraryDependencies ++= Seq(
         "com.typesafe.akka" %% "akka-cluster-sharding-typed" % akkaVersion
       ),
-    mimaPreviousArtifacts := Set(
-        organization.value %% name.value % previousStableVersion.value
-          .getOrElse(throw new Error("Unable to determine previous version"))
-      )
+    mimaPreviousArtifacts := Set.empty//temporarily disable mima checks
   )
 
 lazy val tests = project


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org