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