在模块Maven之间共享测试资源

时间:2019-03-20 14:04:57

标签: maven resources

您好,很抱歉,我尝试阅读许多与此相关的文章,而没有任何解决方案。这是上下文:

+ parent
      pom.xml

   + shared-resources
       src
         main
             resources
                file.xml                   
       pom.xml

   + sub-module
       pom.xml

我想在测试中为所需的模块(例如子模块)共享 file.xml 。为此,我只是将子模块中的依赖项添加到共享资源模块中:

 <dependencies>
        <dependency>
            <groupId>com.google</groupId>
            <artifactId>shared-resources</artifactId>
            <version>1.0-SNAPSHOT</version>
            <scope>test</scope>
        </dependency>
    </dependencies> 

但是在运行子模块的 package 阶段之后,我没有在 target-> test-classes 文件夹中加载任何资源。

有帮助吗?

0 个答案:

没有答案