Please refer to XXXXX for the individual test results._zhizhiqiuya
-
错误原因:
项目开发中没有编写测试,打包过程中test检测错误 -
解决方案:
跳过测试单元
文章来源:https://www.toymoban.com/news/detail-704357.html
- 修改pom文件
<build>
<plugins>
<!-- maven 打包时跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
完成文章来源地址https://www.toymoban.com/news/detail-704357.html
到了这里,关于Maven打包错误:Please refer to XXXXX for the individual test results._zhizhiqiuya的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!