Exclude rule tests from surefire since we are fixing these tests at the end

This commit is contained in:
Andreas Dangel
2019-05-06 21:04:23 +02:00
parent 70b8c384e6
commit d340075bc7

View File

@ -92,6 +92,17 @@
<suppressionsLocation>pmd-java-checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/lang/java/rule/*/*.java</exclude>
<exclude>**/net/sourceforge/pmd/coverage/PMDCoverageTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>