在pom.xml的编译插件部分显式的增加一段内容:文章来源:https://www.toymoban.com/news/detail-643018.html
<plugin>
<!-- maven打包时,显式的跳过test部分 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
maven package时可以跳过Spring Boot项目中的各种TEST代码,避免一些打包中的错误。文章来源地址https://www.toymoban.com/news/detail-643018.html
到了这里,关于Spring Boot Maven package时显式的跳过test内容的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!