Ok- I've combed S/O and many others, and have found all the other related posts and have followed all said suggestions, but in the end, failsafe is skipping my tests.
My JUnit test is here:
myModule/src/main/test/java/ClientAccessIT.java
I am skipping surefire because there are no unit tests in this module:
<!-- POM snippet -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- POM snippet -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<id>run-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
You need to rename your test class.
You can find the names the plugin looks for by default in the documentation, as pointed out by @acdcjunior:
By default, the Failsafe Plugin will automatically include all test classes with the following wildcard patterns:
- "
**/IT*.java
" - includes all of its subdirectories and all java filenames that start with "IT".- "
**/*IT.java
" - includes all of its subdirectories and all java filenames that end with "IT".- "
**/*ITCase.java
" - includes all of its subdirectories and all java filenames that end with "ITCase".