This is an automated email from the ASF dual-hosted git repository. gzurowski pushed a commit to branch release-disable-tests in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 71084e47d45c9e8514ad0ed26b1eba6dd07bb4bc Author: Gregor Zurowski <[email protected]> AuthorDate: Sat Aug 8 09:21:39 2026 +0200 Skip integration tests in `release` profile --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 67b9b6ec6a9..c08652a4a14 100644 --- a/pom.xml +++ b/pom.xml @@ -717,6 +717,7 @@ </property> </activation> <properties> + <archetype.test.skip>true</archetype.test.skip> <skipTests>true</skipTests> </properties> <build> @@ -773,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>
