Fix test list.

Needed to exclude the non-test class named to match the test runners default
inclusion list.
http://maven.apache.org/plugins/maven-surefire-plugin/examples/inclusion-exclusion.html
This commit is contained in:
Rusty Burchfield 2011-12-25 13:41:45 -08:00 committed by zml2008
parent c914432e9a
commit 05125c496e

13
pom.xml
View File

@ -178,6 +178,17 @@
<goals>assembly:assembly</goals>
</configuration>
</plugin>
<!-- Exclude non-tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/TestOfflinePermissible.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>