You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/03/10 16:51:31 UTC

[camel-quarkus-examples] 02/02: Add skip-testcontainers-tests profile to cluster-leader-election example

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

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

commit 0baaa02c6bcb7d238cf6ac8a7d75718c8315c9c9
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Mar 10 16:04:04 2023 +0000

    Add skip-testcontainers-tests profile to cluster-leader-election example
---
 cluster-leader-election/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index f19a5b6..17b4abe 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -337,6 +337,17 @@
                 </dependency>
             </dependencies>
         </profile>
+        <profile>
+            <id>skip-testcontainers-tests</id>
+            <activation>
+                <property>
+                    <name>skip-testcontainers-tests</name>
+                </property>
+            </activation>
+            <properties>
+                <skipTests>true</skipTests>
+            </properties>
+        </profile>
     </profiles>
 
 </project>