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.git
The following commit(s) were added to refs/heads/main by this push: new 1e1647ad426 Add surefire plugin configuration for release profile 1e1647ad426 is described below commit 1e1647ad4265fa15f5bdd05b808a2798e7113d29 Author: Gregor Zurowski <gre...@zurowski.org> AuthorDate: Sun Mar 5 11:01:20 2023 +0100 Add surefire plugin configuration for release profile --- pom.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 649d9d6ba0f..b7af08571ba 100644 --- a/pom.xml +++ b/pom.xml @@ -779,11 +779,19 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> - <failIfNoTests>false</failIfNoTests> <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> + <failIfNoTests>false</failIfNoTests> <skipITs>true</skipITs> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> + <failIfNoTests>false</failIfNoTests> + </configuration> + </plugin> </plugins> </build> </profile>