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:46 UTC

[camel] 06/07: (chores) build: fix CI build (camel-olingo2-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 3d167324d60228a5e1cd507304986ff4509bc1de
Author: Otavio R. Piske <an...@gmail.com>
AuthorDate: Sun Jun 25 13:33:00 2023 +0200

     (chores) build: fix CI build (camel-olingo2-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-olingo2/camel-olingo2-api/pom.xml | 23 ----------------------
 1 file changed, 23 deletions(-)

diff --git a/components/camel-olingo2/camel-olingo2-api/pom.xml b/components/camel-olingo2/camel-olingo2-api/pom.xml
index 0902da12047..2617149ffc3 100644
--- a/components/camel-olingo2/camel-olingo2-api/pom.xml
+++ b/components/camel-olingo2/camel-olingo2-api/pom.xml
@@ -67,27 +67,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-    <build>
-        <defaultGoal>install</defaultGoal>
-
-        <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>