This is an automated email from the ASF dual-hosted git repository.

bryanck pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new 88d460425a Build, Kafka-Connect: Disable publishing for empty grouping 
project (#15496)
88d460425a is described below

commit 88d460425ab6a0e4c938e90665b4b772d7b57c41
Author: Hongyue/Steve Zhang <[email protected]>
AuthorDate: Tue Mar 3 09:37:26 2026 -0800

    Build, Kafka-Connect: Disable publishing for empty grouping project (#15496)
---
 kafka-connect/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kafka-connect/build.gradle b/kafka-connect/build.gradle
index 42079f98a7..ca6048b513 100644
--- a/kafka-connect/build.gradle
+++ b/kafka-connect/build.gradle
@@ -17,6 +17,11 @@
  * under the License.
  */
 
+// disable publishing from empty grouping project
+afterEvaluate {
+  tasks.matching { it.group == 'publishing' }.each { it.enabled = false }
+}
+
 project(':iceberg-kafka-connect:iceberg-kafka-connect-events') {
   dependencies {
     api project(':iceberg-api')

Reply via email to