DevOps / Maven Interview questions II
Difference between mvn install and package.
mvn package takes the compiled code and package it in its distributable format, such as a JAR.
mvn install installs the package into the local repository, for use as a dependency in other projects locally.
More Related questions...