You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/06/25 11:34:42 UTC

[camel] 02/07: (chores) build: fix CI build (camel-as2-api)

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ab02143e7a8e65b640d21db6d659e0eb6def9ffd
Author: Otavio R. Piske <an...@gmail.com>
AuthorDate: Sun Jun 25 13:29:33 2023 +0200

     (chores) build: fix CI build (camel-as2-api)
    
    - attaching the sources can be done with the source-jar or deploy profiles
    - this breaks the CI build during deploy, as this plugin is defined twice on that scenario
    
    Signed-off-by: Otavio R. Piske <an...@gmail.com>
---
 components/camel-as2/camel-as2-api/pom.xml | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/components/camel-as2/camel-as2-api/pom.xml b/components/camel-as2/camel-as2-api/pom.xml
index b18b3e77ac5..9b0e829c702 100644
--- a/components/camel-as2/camel-as2-api/pom.xml
+++ b/components/camel-as2/camel-as2-api/pom.xml
@@ -100,23 +100,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-source-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>attach-sources</id>
-                        <phase>verify</phase>
-                        <goals>
-                            <goal>jar-no-fork</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
 </project>