我搜索了论坛以找到我的问题的答案,但我无法找到它。我的问题是:
我有两个项目:ProjectA 和 ProjectB。项目 B 使用项目 A。在 ProjectA 中,我有两个文件夹:/src/main/resources 和 /src/test/resources。在 ProjectB 我运行: mvn clean install。我希望,在测试阶段,ProjectB 中的类使用来自 /src/test/resources 而不是 /src/main/resources 的资源。
它与我的问题类似,但是在我为 ProjectA 配置了 test-jar 目标之后,ProjectB 仍然以这种方式运行测试,ProjectA 中的类使用来自 /src/main/resources 而不是 /src/test/resources 的属性。
我在 ProjectA 中的 pom.xml 看起来像:
<project ...>
<parent>
...
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ProjectA</artifactId>
<packaging>jar</packaging>
<dependencies>
...
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
在 ProjectB 我的 pom.xml 看起来像:
<project ...>
<parent>
...
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ProjectB</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.sensano</groupId>
<artifactId>ProjectA</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ProjectA</groupId>
<artifactId>ProjectA</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>
</dependencies>
</project>
有没有方法任何帮助将不胜感激!
此致
马特乌什·莫罗兹