好吧,不知为什么
<environmentVariables>
和
<systemProperties>
在
<config>
块
maven-failsafe-plugin
不能与
spring-boot-maven-plugin
.
SpringBoot插件似乎负责在
pre-integration-test
阶段,因为此片段:
<execution>
<id>pre-integration-test</id>
<goals>
<goal>start</goal>
</goals>
</execution>
我通过配置
spring boot maven插件
相反:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<workingDirectory>${basedir}</workingDirectory>
根据文件
${basedir}
应该是默认的,但可能不适用于Maven多模块项目。