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=true

Now, when you build your project build, all unit tests will be ignored.

Note : You can find more similar articles at - Maven Tutorials