16

我搜索了论坛以找到我的问题的答案,但我无法找到它。我的问题是:

我有两个项目:ProjectA 和 ProjectB。项目 B 使用项目 A。在 ProjectA 中,我有两个文件夹:/src/main/resources 和 /src/test/resources。在 ProjectB 我运行: mvn clean install。我希望,在测试阶段,ProjectB 中的类使用来自 /src/test/resources 而不是 /src/main/resources 的资源。

这是我尝试过的: http://www.waltercedric.com/java-j2ee-mainmenu-53/361-maven-build-system/1349-maven-reusing-test-classes-across-multi-modules-projects。 html

它与我的问题类似,但是在我为 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>

有没有方法任何帮助将不胜感激!

此致
马特乌什·莫罗兹

4

1 回答 1

11

src/main/resources打包到名为ProjectA.jar以下结构的jar文件中

ProjectA.jar
|`-com
|  `-sensano
|    `-foo
`-[the resource form src/main/resources]

可悲的是,它们也被打包到名为以下结构src/test/resources的 jar 文件中。ProjectA-tests.jar

ProjectA-tests.jar
|`-com
|  `-sensano
|    `-foo
`-[the resource form src/test/resources]

如果您需要的资源名称对于 fromsrc/main/resourcessrc/test/resources. 可能有一些类加载器问题。恕我直言,最近的胜利。

既然你把 the 放在了ProjectA之前ProjectA-tests,那么它可能是ProjectB使用src/main/resourcesfrom的根本原因,ProjectA因为它是最近的。

请尝试通过将以下放在ProjectA-tests前面进行交换ProjectA:-

<dependencies>
    <dependency>
        <groupId>com.sensano</groupId>
        <artifactId>ProjectA</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <scope>test</scope>
        <type>test-jar</type>
    </dependency>
    <dependency>
        <groupId>com.sensano</groupId>
        <artifactId>ProjectA</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </dependency>
</dependencies>

最接近的是ProjectA-tests, 并且ProjectB应该使用 the src/test/resources

我希望这可能会有所帮助。

于 2013-05-17T01:23:52.787 回答