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 2022/01/30 08:04:12 UTC

[camel] branch main updated: Skip testing maven archetypes for release profile.

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 bd5c161  Skip testing maven archetypes for release profile.
bd5c161 is described below

commit bd5c161b163da12ffeb5b84f91f921af8a40cdc8
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Jan 30 09:03:32 2022 +0100

    Skip testing maven archetypes for release profile.
---
 archetypes/pom.xml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index d3973e1..7532a65 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -17,7 +17,8 @@
     limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -71,6 +72,24 @@
                 <archetype.test.skip>true</archetype.test.skip>
             </properties>
         </profile>
+        <profile>
+            <id>archetypes-skip-tests-fastinstall</id>
+            <activation>
+                <property><name>fastinstall</name></property>
+            </activation>
+            <properties>
+                <archetype.test.skip>true</archetype.test.skip>
+            </properties>
+        </profile>
+        <profile>
+            <id>archetypes-skip-tests-release</id>
+            <activation>
+                <property><name>release</name></property>
+            </activation>
+            <properties>
+                <archetype.test.skip>true</archetype.test.skip>
+            </properties>
+        </profile>
     </profiles>
 
     <build>