You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/03/24 12:55:15 UTC

[camel-quarkus] branch master updated: Remove redundant native profile from kubernetes extension

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

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new adeed3f  Remove redundant native profile from kubernetes extension
adeed3f is described below

commit adeed3f544999f25d5c2786642d3323a67564925
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Mar 24 11:51:53 2020 +0000

    Remove redundant native profile from kubernetes extension
---
 extensions-jvm/kubernetes/integration-test/pom.xml | 31 ----------------------
 1 file changed, 31 deletions(-)

diff --git a/extensions-jvm/kubernetes/integration-test/pom.xml b/extensions-jvm/kubernetes/integration-test/pom.xml
index 48ef8be..45fc54e 100644
--- a/extensions-jvm/kubernetes/integration-test/pom.xml
+++ b/extensions-jvm/kubernetes/integration-test/pom.xml
@@ -84,35 +84,4 @@
             </plugin>
         </plugins>
     </build>
-
-    <profiles>
-        <profile>
-            <id>native</id>
-            <activation>
-                <property>
-                    <name>native</name>
-                </property>
-            </activation>
-            <properties>
-                <quarkus.package.type>native</quarkus.package.type>
-            </properties>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-failsafe-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <goals>
-                                    <goal>integration-test</goal>
-                                    <goal>verify</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
 </project>