This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 3f5da41dd2f CAMEL-20524: camel-main sources-jar is needed by
camel-spring-boot to build
3f5da41dd2f is described below
commit 3f5da41dd2fe7408d493ac75cc4e5532bb27f2a6
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Mar 20 11:54:17 2024 +0100
CAMEL-20524: camel-main sources-jar is needed by camel-spring-boot to build
---
core/camel-main/pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/core/camel-main/pom.xml b/core/camel-main/pom.xml
index 1fddc75bedd..5ecb5baa1d6 100644
--- a/core/camel-main/pom.xml
+++ b/core/camel-main/pom.xml
@@ -205,6 +205,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <!-- Required by camel-spring-boot -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>