在項目中,我創建了以下目錄結構maven failsafe插件。
src
-> main
-> java
-> resources
-> test
-> java
-> resources
-> integration-test
-> java
-> resources
在我的pom.xml複製的資源我做下面的條目
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
<configuration>
<testSourceDirectory>src/integration-test/java</testSourceDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
如果我複製在SRC->測試 - 資源>資源將自動成功複製到/ target/test-classes。但是,如果我將文件複製到/ src/integration-test/resources中,那麼在構建時它不會複製到目標/測試類中。
我該如何讓集成測試也將資源內的文件複製到目標中?
謝謝。我解決它通過此線' $ {project.basedir}/SRC /集成測試/資源 testResource> testResources>' –