I just started using Maven and I was told to do mvn install in a specific directory.
mvn install
What does mvn install do, exactly?
I think i
At any stage of maven build life cycle, all the previous goals are performed.
Ex: mvn install will invoke mvn validate, mvn compile, mvn test, mvn package etc.