Skip testing in Maven
To skip the unit testing in Maven, we need to set the environment variable "maven.test.skip" to true. Or we can use "-DskipTests"
Sample command:
Prompt> mvn package -Dmaven.test.skip=true
OR
Prompt> mvn package -DskipTests
Reference:
https://www.mkyong.com/maven/how-to-skip-maven-unit-test/
Sample command:
Prompt> mvn package -Dmaven.test.skip=true
OR
Prompt> mvn package -DskipTests
Reference:
https://www.mkyong.com/maven/how-to-skip-maven-unit-test/
Comments
Post a Comment