本文主要是介绍org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
maven 打包问题。。。
pom.xml使用了:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
可以尝试使用:Skip Tests
第二种
<!--添加配置跳过测试-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!--添加配置跳过测试-->
这篇关于org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!