You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notes: You should execute the goal at the install phase, not the package phase. The origin jar file in install phase does not contain necessary dependencies in the file content. while the jar file in the install phase contains the necessary dependencies in it which is repackaged by spring boot plugin.
install
maven command
run mvn package install instead of mvn package, to copy the final jar to expected output directory.
The text was updated successfully, but these errors were encountered:
There are at last 3 options to fulfill this case.
Option 1.By maven-resource-plugin:
https://stackoverflow.com/questions/6689511/how-to-place-the-output-jar-into-another-folder-with-maven#comment7915129_6689511
https://maven.apache.org/plugins/maven-resources-plugin/examples/copy-resources.html
Option 2: By maven assembly plugin
https://maven.apache.org/plugins/maven-assembly-plugin/usage.html
Option 3: By ant run plugin
https://stackoverflow.com/questions/6689511/how-to-place-the-output-jar-into-another-folder-with-maven#comment7915129_6689511
Notes: You should execute the goal at the install phase, not the package phase. The origin jar file in install phase does not contain necessary dependencies in the file content. while the jar file in the install phase contains the necessary dependencies in it which is repackaged by spring boot plugin.
install
maven command
run
mvn package install
instead ofmvn package
, to copy the final jar to expected output directory.The text was updated successfully, but these errors were encountered: