How are “mvn clean package” and “mvn clean install” different?

后端 未结 5 922
-上瘾入骨i
-上瘾入骨i 2020-12-07 07:18

What exactly are the differences between mvn clean package and mvn clean install? When I run both of these commands, they both seem to do the same

5条回答
  •  囚心锁ツ
    2020-12-07 07:25

    package will generate Jar/war as per POM file. install will install generated jar file to the local repository for other dependencies if any.

    install phase comes after package phase

提交回复
热议问题