使用maven jar插件将非Java文件和资源文件包含到test-jar中

时间:2013-01-09 09:57:45

标签: maven

我想将脚本文件作为使用maven打包测试文件的一部分。我使用下面的插件配置但是配置和jython文件文件不是测试罐中的包

         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.2</version>
            <executions>
                <execution>
                    <goals>
                        <goal>test-jar</goal>
                    </goals>
                    <configuration>
                        <includes>
                            <include>**/config/*</include>
                            <include>**/jython/*</include>
                        </includes>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
无论如何,在test-jar中包含不在src / test / java和src / test / resources中的文件?

1 个答案:

答案 0 :(得分:8)

使用以下命令指定其他测试资源文件夹:

<build>
    <testResources>
        <testResource>
            <directory>src/test</directory>
            <includes>
                <include>**/config/*</include>
                <include>**/jython/*</include>
            </includes>
        </testResource>
    </testResources>
</build>

然后你应该发现maven-jar-plugin不需要配置。

也可以使用build-helper-maven-plugin。请参阅:Maven - Add directory to classpath while executing tests