我在使用Spring Boot时遇到问题需要一个简单的应用程序来处理测试。 (使用本教程:https://spring.io/guides/gs/spring-boot/)这是我的pom.xml
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>gs-spring-boot</artifactId>
<version>0.1.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
我在spring-boot-starter-parent(版本2.18.1)中包含的surefire插件版本遇到了一些问题。当我运行它(mvn clean package)时,我收到以下错误:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project gs-spring-boot: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test failed: A required class was missing while executing org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test: org/apache/maven/surefire/util/DefaultScanResult
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test failed: A required class was missing while executing org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test: org/apache/maven/surefire/util/DefaultScanResult
当我查看maven-surefire-plugin内部时:2.18.1 jar默认情况下,虽然它位于maven-surefire-plugin:2.19.1中,但DefaultScanResult类并不存在。
所以我想要做的是将surefire插件版本覆盖到maven-surefire-plugin:2.19.1。 我知道SpringBoot有一个覆盖版本的机制,但似乎没有一个属性可以用于覆盖。
比如我在这看了一下: https://github.com/spring-projects/spring-boot/blob/v1.4.1.RELEASE/spring-boot-dependencies/pom.xml
有许多版本的属性,但不是一个肯定的 - 似乎硬编码为2.18.1
那么我可以用另一种方式覆盖它吗?
我接受它可能是硬编码的原因,但无论如何都想知道。
谢谢!