I\'d like to place my output jar and jar-with-dependencies into another folder (not in target/ but in ../libs/).
How can I do that?
This technique worked well for me:
http://maven.apache.org/plugins/maven-dependency-plugin/examples/copying-artifacts.html
[...]
org.apache.maven.plugins
maven-dependency-plugin
2.10
copy
package
copy
junit
junit
3.8.1
jar
false
${project.build.directory}/alternateLocation
optional-new-name.jar
${project.build.directory}/wars
false
true
[...]