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

daojun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new e6cfd2bbcc5 [improve][io] Allow skipping connector deployment (#23932)
e6cfd2bbcc5 is described below

commit e6cfd2bbcc536152bb95ce2bffdff26e34bce73f
Author: Zixuan Liu <[email protected]>
AuthorDate: Sat Feb 8 13:18:46 2025 +0800

    [improve][io] Allow skipping connector deployment (#23932)
    
    Signed-off-by: Zixuan Liu <[email protected]>
---
 pom.xml                  | 1 +
 pulsar-io/common/pom.xml | 7 +++++++
 pulsar-io/core/pom.xml   | 7 +++++++
 pulsar-io/pom.xml        | 7 +++++++
 4 files changed, 22 insertions(+)

diff --git a/pom.xml b/pom.xml
index da3d8479b1f..b24577cfb83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -133,6 +133,7 @@ flexible messaging model and an intuitive client 
API.</description>
     <docker.tag>latest</docker.tag>
     <skipSourceReleaseAssembly>false</skipSourceReleaseAssembly>
     <skipBuildDistribution>false</skipBuildDistribution>
+    <skipDeployConnector>false</skipDeployConnector>
     <shadePluginPhase>package</shadePluginPhase>
     <narPluginPhase>package</narPluginPhase>
 
diff --git a/pulsar-io/common/pom.xml b/pulsar-io/common/pom.xml
index 987c6c8cc8b..7eef536b2b6 100644
--- a/pulsar-io/common/pom.xml
+++ b/pulsar-io/common/pom.xml
@@ -48,6 +48,13 @@
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>false</skip>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>com.github.spotbugs</groupId>
                 <artifactId>spotbugs-maven-plugin</artifactId>
diff --git a/pulsar-io/core/pom.xml b/pulsar-io/core/pom.xml
index 8f7920c7255..fa4236bf870 100644
--- a/pulsar-io/core/pom.xml
+++ b/pulsar-io/core/pom.xml
@@ -40,6 +40,13 @@
 
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>false</skip>
+        </configuration>
+      </plugin>
       <plugin>
         <groupId>com.github.spotbugs</groupId>
         <artifactId>spotbugs-maven-plugin</artifactId>
diff --git a/pulsar-io/pom.xml b/pulsar-io/pom.xml
index 4eba7553883..968eb81b246 100644
--- a/pulsar-io/pom.xml
+++ b/pulsar-io/pom.xml
@@ -148,6 +148,13 @@
 
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>${skipDeployConnector}</skip>
+        </configuration>
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>

Reply via email to