Author: reschke
Date: Tue May 8 11:22:10 2018
New Revision: 1831163
URL: http://svn.apache.org/viewvc?rev=1831163&view=rev
Log:
OAK-7483: add "javadoc" profile for Jenkins matrix builds - prevent unit tests
from running
Modified:
jackrabbit/oak/trunk/oak-parent/pom.xml
Modified: jackrabbit/oak/trunk/oak-parent/pom.xml
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-parent/pom.xml?rev=1831163&r1=1831162&r2=1831163&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-parent/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-parent/pom.xml Tue May 8 11:22:10 2018
@@ -834,7 +834,6 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
@@ -845,6 +844,14 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <!-- run a test to prevent Jenkins from failing because no test
ran -->
+ <test>PathUtilsTest</test>
+ <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>