i am new to maven and I am wondering is this even possible in maven?
mvn clean install deploy
or
mvn clean compile install deploy
will maven do all the steps? thanks in advance
i am new to maven and I am wondering is this even possible in maven?
mvn clean install deploy
or
mvn clean compile install deploy
will maven do all the steps? thanks in advance
The short answer is yes.
Maven has the concept of a build life cycle. In the example you have given
mvn clean compile install deploy
The highest phase is deploy which includes compile and install so it's the same as mvn clean deploy.