InterviewSolution
Saved Bookmarks
| 1. |
How Can I Change The Default Location Of The Generated Jar When I Command "mvn Package"? |
|
Answer» By default, the location of the generated jar is in ${project.build.DIRECTORY} or in your TARGET directory. We can CHANGE this by CONFIGURING the outputDirectory of maven-jar-plugin. By default, the location of the generated jar is in ${project.build.directory} or in your target directory. We can change this by configuring the outputDirectory of maven-jar-plugin. |
|