This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit acdaa1d1fbc0c0b34a67f9980f6d5a5d049643a5 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]> (cherry picked from commit e6cfd2bbcc536152bb95ce2bffdff26e34bce73f) --- 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 bbe62bd8ce1..915c2859771 100644 --- a/pom.xml +++ b/pom.xml @@ -130,6 +130,7 @@ flexible messaging model and an intuitive client API.</description> <docker.organization>apachepulsar</docker.organization> <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 be6a24e131b..bf80f366bb5 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 60d4a79125d..7b850f505d2 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 ab9397f7f3e..316ac97ecaf 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>
