This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-projection.git
The following commit(s) were added to refs/heads/main by this push:
new e384583a build: fix sbt lint warnings by excluding unused
mimaPreviousArtifacts key (#527)
e384583a is described below
commit e384583a78cc912b225d0ab3686ea334a9ac1c40
Author: He-Pin(kerr) <[email protected]>
AuthorDate: Tue Jun 16 17:59:51 2026 +0800
build: fix sbt lint warnings by excluding unused mimaPreviousArtifacts key
(#527)
Motivation:
sbt lint reported 15 unused mimaPreviousArtifacts keys across sub-projects
(bill-of-materials, cassandra-test, core-test, docs, examples, grpc,
grpc-int-test, grpc-test, integration-examples, jdbc-int-test, kafka-test,
projection, r2dbc-int-test, slick-int-test).
Modification:
Add mimaPreviousArtifacts to Global / excludeLintKeys in
project/Common.scala.
Result:
sbt load no longer reports unused mimaPreviousArtifacts keys.
Tests:
- sbt "clean; compile" - all mimaPreviousArtifacts lint warnings resolved
References:
None - build configuration cleanup
---
project/Common.scala | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/project/Common.scala b/project/Common.scala
index e64e8497..8dd436b0 100644
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -37,7 +37,8 @@ object Common extends AutoPlugin {
"Contributors",
"[email protected]",
url("https://github.com/apache/pekko-projection/graphs/contributors")),
- description := "Apache Pekko Projection.")
+ description := "Apache Pekko Projection.",
+ excludeLintKeys ++= Set(mimaPreviousArtifacts))
val mimaCompareVersion = "1.0.0"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]