Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 11:00:05 +01: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
Dieser Commit ist enthalten in:
Ursprung
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>
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren