When I build my project, I run this command :
mvn clean package
I'd like the resulting jar file built in the default target directory, during the package phase, be copied in another directory.
How can I do this with Maven?
|
When I build my project, I run this command :
I'd like the resulting jar file built in the default target directory, during the How can I do this with Maven? |
||||
|
By default the folder declared in Super POM, that have been inherited by your pom.
You can change it in your pom.xml the next way:
|
|||||||
|
|
You can use the ant run plugin to copy the stuff over. The following is taken from a pom from rhq-project.org
|
|||
|
|
jboss-maven-plugin: mojo.codehaus.org/jboss-maven-plugin/index.html – Alex Apr 20 '11 at 13:57