You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/07/10 10:21:46 UTC

[camel-kameleon] branch main updated: Remove unused plugins and profiles from pom.xml

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-kameleon.git


The following commit(s) were added to refs/heads/main by this push:
     new e59189f  Remove unused plugins and profiles from pom.xml
     new 606c844  Merge pull request #4 from mgubaidullin/cleaning
e59189f is described below

commit e59189f52db3cf8d4ba1b3828fd8729765df45be
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Fri Jul 9 17:57:20 2021 -0400

    Remove unused plugins and profiles from pom.xml
---
 pom.xml | 79 -----------------------------------------------------------------
 1 file changed, 79 deletions(-)

diff --git a/pom.xml b/pom.xml
index f75f329..5858282 100644
--- a/pom.xml
+++ b/pom.xml
@@ -185,14 +185,6 @@ under the License.
                 </executions>
             </plugin>
             <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>exec-maven-plugin</artifactId>
-                <version>3.0.0</version>
-                <configuration>
-                    <mainClass>org.apache.camel.kameleon.legacy.MetadataBuilder</mainClass>
-                </configuration>
-            </plugin>
-            <plugin>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>${compiler-plugin.version}</version>
             </plugin>
@@ -208,75 +200,4 @@ under the License.
             </plugin>
         </plugins>
     </build>
-    <profiles>
-        <profile>
-            <id>native</id>
-            <activation>
-                <property>
-                    <name>native</name>
-                </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-failsafe-plugin</artifactId>
-                        <version>${surefire-plugin.version}</version>
-                        <executions>
-                            <execution>
-                                <goals>
-                                    <goal>integration-test</goal>
-                                    <goal>verify</goal>
-                                </goals>
-                                <configuration>
-                                    <systemPropertyVariables>
-                                        <native.image.path>
-                                            ${project.build.directory}/${project.build.finalName}-runner
-                                        </native.image.path>
-                                        <java.util.logging.manager>org.jboss.logmanager.LogManager
-                                        </java.util.logging.manager>
-                                        <maven.home>${maven.home}</maven.home>
-                                    </systemPropertyVariables>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-            <properties>
-                <quarkus.package.type>native</quarkus.package.type>
-            </properties>
-        </profile>
-    </profiles>
-    <repositories>
-        <repository>
-            <id>snapshots</id>
-            <url>http://repository.apache.org/snapshots</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-            <snapshots>
-                <enabled>true</enabled>
-            </snapshots>
-        </repository>
-        <repository>
-            <id>asf-releases</id>
-            <url>https://repository.apache.org/content/repositories/releases/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-            <snapshots>
-                <enabled>false</enabled>
-            </snapshots>
-        </repository>
-    </repositories>
-    <pluginRepositories>
-        <pluginRepository>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-            <snapshots/>
-            <id>Apache Snapshot Repository</id>
-            <url>http://repository.apache.org/snapshots</url>
-        </pluginRepository>
-    </pluginRepositories>
 </project>