Could not understand this is happening. When I run,
mvn failsafe:integration-test
it fires my integration tests (test ending with ***IT.java) as first. Then, when I execute immediately the same command, it says "No tests to run".
Any help of information would be appreciated. Below is my pom.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>