You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/04/20 07:23:47 UTC

[camel-kafka-connector] branch master updated: Fixed surefire configuration for releasing

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b57602  Fixed surefire configuration for releasing
8b57602 is described below

commit 8b576020d5a08303e55d1d30b91fe56780a3eba8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 20 09:23:12 2020 +0200

    Fixed surefire configuration for releasing
---
 parent/pom.xml | 13 +++++++++++--
 pom.xml        |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index a5044e1..394dcea 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -38,7 +38,6 @@
 
 
         <version.maven.compiler>3.8.1</version.maven.compiler>
-        <version.maven.surefire>2.19.1</version.maven.surefire>
         <version.maven.javadoc>3.1.1</version.maven.javadoc>
         <version.maven.source>3.0.1</version.maven.source>
         <version.maven.resources>3.0.1</version.maven.resources>
@@ -48,6 +47,7 @@
         <version.maven.bundle>3.5.1</version.maven.bundle>
         <version.maven.jar>3.1.0</version.maven.jar>
         <version.maven.failsafe>2.22.2</version.maven.failsafe>
+        <version.maven.surefire>3.0.0-M4</version.maven.surefire>
         <version.scala.library>2.12.4</version.scala.library>
         <version.testcontainers>1.14.0</version.testcontainers>
         <version.qpid-jms-client>0.50.0</version.qpid-jms-client>
@@ -325,8 +325,17 @@
 
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-surefire-report-plugin</artifactId>
+                    <artifactId>maven-surefire-plugin</artifactId>
                     <version>${version.maven.surefire}</version>
+                    <configuration>
+                        <failIfNoTests>false</failIfNoTests>
+                    </configuration>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-report-plugin</artifactId>
+                    <version>${version.maven.surefire.plugin}</version>
                     <executions>
                         <execution>
                             <phase>verify</phase>
diff --git a/pom.xml b/pom.xml
index 8b6ab49..2f7bb83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,6 +39,7 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
         <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
+        <maven-surefire-plugin.version>3.0.0-M4</maven-surefire-plugin.version>
         <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
         <maven-source-plugin.version>3.1.0</maven-source-plugin.version>
     </properties>