yegor256
yegor256

Reputation: 105213

How to order executions in one phase?

I have two <execution>s attached to the same phase deploy. First execution is tomcat:redeploy, second one is a custom one that makes a HTTP request to the production server to validate that the application really works.

How can I instruct maven to execute them in this particular order?

Upvotes: 1

Views: 80

Answers (1)

lexicore
lexicore

Reputation: 43709

Check http://jira.codehaus.org/browse/MNG-2258, try Maven 3.

Upvotes: 2

Related Questions