Springboot 打包跳过Junit测试

在Myeclipse每次使用run as -> maven install, 总是运行junit test

这是因为 

spring-boot-maven-plugin插件已经集成了maven-surefire-plugin插件

会自动运行 junit test

只需要在pom.xml里增加

<properties>

    <!-- <maven.test.skip>true</maven.test.skip> -->

    <skipTests>true</skipTests>

</properties>

这里需要注意的是maven.test.skip, 不生成test的所有.class,skipTests会编译测试类,即生成.class文件,只是不运行测试类

猜你喜欢

转载自blog.csdn.net/m0_37787662/article/details/87620385
今日推荐