Posts

Showing posts from June, 2012

How to build a maven project without tests

When we build a large project using maven it takes a lot of time because of tests  runs. So we can build quickly by disabling the tests. We can do that using the following command. mvn - Dmaven . test . skip = true install