mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
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:
parent
c914432e9a
commit
05125c496e
13
pom.xml
13
pom.xml
@ -178,6 +178,17 @@
|
|||||||
<goals>assembly:assembly</goals>
|
<goals>assembly:assembly</goals>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
Reference in New Issue
Block a user