How to skip Maven unit test
By default, when you build your project with maven, it will run the entire unit tests of your project.
$ mvn install$ mvn package
However, if any of unit test is failed, it will force Maven to abort the building process. In real life, you may “STILL” need to build your project even unit test is failed.
Skip Unit Test
To skip it, use “-Dmaven.test.skip=true” option to tell Maven that you want to skip running the entire unit test. For example,
$ mvn install -Dmaven.test.skip=true
$ mvn package -Dmaven.test.skip=trueNow, when you build your project build, all unit tests will be ignored.






[...] Mkyong] By default, when you build your project with maven, it will run the entire unit tests of your [...]
[...] Skip unit test during Maven build Here’s a tip to skip Maven to run your project unit test during project build, because run all the project unit test by default is not necessary in all times. [...]