maven跳过单元测试

24、跳过单元测试
< plugin >
< groupId >org.apache.maven.plugins </ groupId >
< artifactId >maven-surefire-plugin </ artifactId >
< configuration >
< skip >true </ skip >
</ configuration >
</ plugin >
或使用命令:mvn install -Dmaven.test.skip=true

你可能感兴趣的:(maven)