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 2023/06/01 15:51:02 UTC

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

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

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

commit 635b0ce09e3a24069717d14c6c61ca4c6933f2dd
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>