maven打包时跳过测试用例

更多内容,请查看博客原文:maven打包时跳过测试用例
https://finolo.gy/2020/01/maven打包时跳过测试用例/

mvn clean package -Dmaven.test.skip=true

{% asset_image maven配置.png %}

[INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ springboot-mybatis ---
[INFO] Not copying test resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ springboot-mybatis ---
[INFO] Not compiling test sources
[INFO] 
[INFO] --- maven-surefire-plugin:2.20.1:test (default-test) @ springboot-mybatis ---
[INFO] Tests are skipped.

不拷贝,不编译test文件夹里面的内容了。

更多内容,请查看博客原文:maven打包时跳过测试用例
https://finolo.gy/2020/01/maven打包时跳过测试用例/

发布了41 篇原创文章 · 获赞 6 · 访问量 2602

猜你喜欢

转载自blog.csdn.net/footrip/article/details/104591196