Hi I am very new to maven. I would like to change the order of maven plug-in execution. In my pom.xml I have maven-assembly plug-in and maven ant plug-in .I used maven assembly plug-in for creating zip file and maven ant plug-in for copying the zip file from target to some other directory. When I run pom.xml maven ant plug-in got triggered and looking for zip file finally I got the error saying zip file not found. Please suggest me the way how to run maven assembly plug in first after that maven ant plug in needs to run so that it will copy zip file to the corresponding directory.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Since you say you are very new to Maven....Maven builds are executions of an ordered series of phases. These phases are determined by the lifecycle that is appropriate to your project based on its packaging. Therefore, you control when a plugin's goal is executed by binding it to a particular phase. Hope that helps. |
||||
|
|