SpringBoot打包錯(cuò)誤:Please refer to xxx\target\surefire-reports for the individual test results
網(wǎng)上的解決方式是:
方法一:
想必是有人也沒有這個(gè)閃電圖標(biāo),原因是IDEA版本的問題,你可以找找
這個(gè)圖標(biāo)的意思是切換“跳過測(cè)試”模式,當(dāng)圖標(biāo)背景置灰后就可以了文章來源:http://www.zghlxwxcb.cn/news/detail-537542.html
方法二:修改pom.xml文件
<build>
<plugins>
<!-- maven 打包時(shí)跳過測(cè)試 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<build>
不出意外的話問題就解決了,成功的樣子文章來源地址http://www.zghlxwxcb.cn/news/detail-537542.html
到了這里,關(guān)于SpringBoot打包錯(cuò)誤:Please refer to xxx\target\surefire-reports for the individual test results的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!