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

davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
     new d5bbc6b8f43 Fix release process by skipping tests in surefire-plugin 
in release profile
d5bbc6b8f43 is described below

commit d5bbc6b8f431dd03b4ab75a033e7f51f9eb5b8e8
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Jun 21 14:48:39 2023 +0200

    Fix release process by skipping tests in surefire-plugin in release profile
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index 7d8ac16db5c..f2c86e93a96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -781,6 +781,15 @@
                             <skipITs>true</skipITs>
                         </configuration>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <version>${maven-surefire-plugin-version}</version>
+                        <configuration>
+                            <skipTests>true</skipTests>
+                            <failIfNoTests>false</failIfNoTests>
+                        </configuration>
+                    </plugin>
                 </plugins>
             </build>
         </profile>

Reply via email to