Process spawned by exec-maven-plugin blocks the maven process
- by Arnab Biswas
I am trying to execute the following scenario using maven :
pre-integration-phase : Start a java based application using a main class (using exec-maven-plugin)
integration-phase : Run the integration test cases (using maven-failsafe-plugin)
post-integration-phase: Stop the application gracefully (using exec-maven-plugin)
Here is pom.xml snip:
…