Articles about mvn useful commands’

May 27, 2008

useful mvn commands

Posted by Anandhan Subbiah in Java, Programming Concepts No comments

Here are some useful mvn commands
mvn eclipse:eclipse -DdownloadSources=true
This will set up the eclipse environment and also download the source for the jar files.
mvn clean install war:inplace
This will create a open war inside the target directory. This is very useful to modify non-java resources.
mvn clean installĀ  -Dmaven.test.skip=true
This will skip the unit tests . It helps to [...]