I've specified the use of Failsafe in a parent POM. When I run mvn verify
on my multi-module build, there is no hint of Failsafe being run - it appears nowhere in the console output.
If I add the same <plugin>
definition into a child POM, it does get run (although it complains about not being able to find \failsafe-reports\failsafe-summary.xml
).
Surely it should be inheriting which plugins are to be run?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.15</version>
<executions>
<execution>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>