In maven there are two ways to skip test.
Whenever we need to skip compilation of test classes we can use second one.
this will skip the tests but classes will compile.mvn install -DskipTests
this will skip the test and also will skip compilation of test classesmvn install -Dmaven.test.skip=true
Whenever we need to skip compilation of test classes we can use second one.
Comments
Post a Comment