You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ro...@apache.org on 2019/02/07 02:45:07 UTC

svn commit: r1853101 - /aries/trunk/cdi/pom.xml

Author: rotty3000
Date: Thu Feb  7 02:45:07 2019
New Revision: 1853101

URL: http://svn.apache.org/viewvc?rev=1853101&view=rev
Log:
[CDI] skip surefire if there are not tests to execute (so "-Dtest=" works with bnd-testing-maven-plugin)

Signed-off-by: Raymond Auge <ro...@apache.org>

Modified:
    aries/trunk/cdi/pom.xml

Modified: aries/trunk/cdi/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/cdi/pom.xml?rev=1853101&r1=1853100&r2=1853101&view=diff
==============================================================================
--- aries/trunk/cdi/pom.xml (original)
+++ aries/trunk/cdi/pom.xml Thu Feb  7 02:45:07 2019
@@ -358,6 +358,12 @@
 					</configuration>
 				</plugin>
 				<plugin>
+					<artifactId>maven-surefire-plugin</artifactId>
+					<configuration>
+						<failIfNoTests>false</failIfNoTests>
+					</configuration>
+				</plugin>
+				<plugin>
 					<groupId>org.eclipse.m2e</groupId>
 					<artifactId>lifecycle-mapping</artifactId>
 					<version>1.0.0</version>