Prevent newer surefire from invoking FetchHTTPTests directly

It seems older versions only matched *Test.java but the new version
is now incorrectly including it.
This commit is contained in:
Alex Osborne
2019-08-02 17:57:09 +09:00
parent 412885fd7d
commit d3d19e2248
+3
View File
@@ -80,6 +80,9 @@
<configuration>
<excludes>
<exclude>**/TestAll.java</exclude>
<!-- exclude FetchHTTPTests because its not meant to be invoked directly and newer
versions of surefire are more lax about the filenames they pickup -->
<exclude>**/*Tests.java</exclude>
</excludes>
</configuration>
</plugin>