我想知道是否可以让 Maven Surefire 插件在不同版本的依赖项下运行多次(多次执行)?
例如,这可以很方便地确保您的代码仍然与项目依赖项的先前版本兼容。
我至少设法运行了 2 次 surefire 执行:
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>test-default-deps</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
<execution>
<id>test-anotherversion-deps</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
<reportsDirectory>${project.build.directory}/surefire-reports-anotherversion-deps</reportsDirectory>
<dependencies>
<!-- Version different of the default for the project -->
<dependency>
<groupId>com.dep.groupid</groupId>
<artifactId>dep-artifact</artifactId>
<version>anotherversion</version>
</dependency>
</dependencies>
</configuration>
</execution>
</executions>
</plugin>
但是在第二次执行期间没有考虑到这个不同的版本。我是在尝试做一些不可行的事情还是以错误的方式做事?是否有另一个插件可以对此有所帮助?