Hello, all
I am having two maven plugin binding to same maven post-integration-test phrase.
1. maven-antrun-plugin
2. maven-dependency-plugin
In my case 2nd must be run before 1st because of dependencies.
I tried to put 2nd at pre-integration-test phrase, but it will cause some tricky problem in the integration testing.
In my case, I always see 1st is executed before 2nd, how can I configure plugin to make sure 2nd is executed before 1st?
Or is there any alternative?
Thanks in advance.