Skip Maven Unit tests

0Shares

In the maven command while building your application add “-Dmaven.test.skip=true” and it will skip the unit tests.

For example:

mvn clean package -Dmaven.test.skip=true

Hope this helps!

0Shares