This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.1 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit e57c020f6f195fc37d79b3509e6e6e821bd60b89 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 3758bd298b0..ef6ea8b907b 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>
