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
posted @ 2015-01-12 21:00  samu  阅读(180)  评论(0编辑  收藏  举报