This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.0 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 504be33cb9568440dd8123145f80dd631c962c1b Author: Lari Hotari <[email protected]> AuthorDate: Thu Oct 2 17:47:30 2025 +0300 [fix][build] Fix maven deploy with maven-source-plugin 3.3.1 (#24811) (cherry picked from commit f5547dc13f091dc8aeb2a3867f483664c3f858b6) --- pulsar-client-all/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pulsar-client-all/pom.xml b/pulsar-client-all/pom.xml index 304360e1712..b5feba96266 100644 --- a/pulsar-client-all/pom.xml +++ b/pulsar-client-all/pom.xml @@ -494,6 +494,17 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <!-- this is required when maven-shade-plugin sets createSourcesJar to true --> + <id>attach-sources</id> + <phase>none</phase> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId>
