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

gzurowski pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new bc127b33c44 Sisable tests in `release` profile (#1882)
bc127b33c44 is described below

commit bc127b33c44d3e400a5f507bd23c2d6a706ec3b6
Author: Gregor Zurowski <[email protected]>
AuthorDate: Sat Aug 8 10:13:35 2026 +0200

    Sisable tests in `release` profile (#1882)
    
    * Skip tests in `release` profile
    
    * Skip integration tests in `release` profile
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index 42a23648352..c08652a4a14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -716,6 +716,10 @@
                     <name>release</name>
                 </property>
             </activation>
+            <properties>
+                <archetype.test.skip>true</archetype.test.skip>
+                <skipTests>true</skipTests>
+            </properties>
             <build>
                 <plugins>
                     <!-- We want to deploy the artifact to a staging location 
for perusal -->
@@ -770,6 +774,13 @@
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-failsafe-plugin</artifactId>
+                        <configuration>
+                            <skipITs>true</skipITs>
+                        </configuration>
+                    </plugin>
                    <plugin>
                    <groupId>org.cyclonedx</groupId>
                    <artifactId>cyclonedx-maven-plugin</artifactId>

Reply via email to