How are “mvn clean package” and “mvn clean install” different?
Well, both will clean. That means they’ll remove the target folder. The real question is what’s the difference between package and install? package will compile your code and also package it. For example, if your pom says the project is a jar, it will create a jar for you when you package it and put it … Read more