gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 15:55:57 25 4
gpt4 key购买 nike

我想包含脚本文件作为使用 Maven 打包测试文件的一部分。我使用下面的插件配置,但是配置和 jython 文件这些文件未打包在测试 jar 中

         <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>

是否有办法将不在 src/test/java 和 src/test/resources 中的文件包含在 test-jar 中?

最佳答案

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

<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

关于maven - 使用 maven jar 插件将非 Java 文件和资源文件包含到 test-jar 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14232528/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com