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

gzurowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new ef2a2b4  Don't fail build if there are no tests
ef2a2b4 is described below

commit ef2a2b4a68d1b65b0e5351be06232408d4ec2d8d
Author: Gregor Zurowski <gre...@zurowski.org>
AuthorDate: Mon Aug 31 10:50:48 2020 +0200

    Don't fail build if there are no tests
---
 init/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/init/pom.xml b/init/pom.xml
index c1a93a9..3228e5c 100644
--- a/init/pom.xml
+++ b/init/pom.xml
@@ -49,6 +49,14 @@
                     <target>${jdk.version}</target>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>${maven-surefire-plugin-version}</version>
+                    <configuration>
+                        <failIfNoTests>false</failIfNoTests>
+                    </configuration>
+            </plugin>
         </plugins>
     </build>
 

Reply via email to