I\'m trying to use Maven Failsafe Plugin to run my integration tests with this configuration:
maven-failsafe-plugin<
Change of jetty maven plugin version from 6.1.7 to 6.1.26 solved everything.
For people still looking for a solution, I had that same problem and I solved it by replacing
<goals>
<goal>run-war</goal>
</goals>
by
<goals>
<goal>start</goal>
</goals>
It works because run* are blocking the execution, while start is non-blocking.