gpt4 book ai didi

maven-2 - 如何在 dbunit-maven-plugin 中处理多个 src 文件

转载 作者:行者123 更新时间:2023-12-01 11:09:05 25 4
gpt4 key购买 nike

dbunit-maven-plugin 1.0-SNAPSHOT 版本支持在 sources 标签下表达多个 src 文件,你如何在只支持单个 src 标签的 1.0-beta-3 版本上做同样的事情

             <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dbunit-maven-plugin</artifactId>
<version>${dbunit-maven-plugin.version}</version>

<executions>
<execution>
<id>populate sample data</id>
<phase>process-test-resources</phase>
<goals>
<goal>operation</goal>
</goals>
<configuration>
<format>flat</format>
<sources>
<source>src/main/resources/seeddata.xml</source>
<source>src/test/resources/testdata.xml</source>
</sources>
<skip>${db.dataset.skip}</skip>
</configuration>
</execution>
</executions>
</plugin>

最佳答案

此改进归功于 MBUNIT-3这确实晚于 1.0-beta-3 的发布。因此,如果您想要此功能,请使用 1.0-SNAPSHOT 或应用 r10226 中的更改。你自己在 1.0-beta-3 分支上(获取 diffs 的补丁,应用它并编译你的 1.0-beta3-patched 版本)。

但老实说,我真的不明白您为什么不使用 1.0-SNAPSHOT。如果使用 SNAPSHOT 有问题,只需构建一个具有固定版本号的版本。

更新:令人惊讶的是,dbunit-maven-plugin 的SNAPSHOT 版本似乎没有在codehaus snapshot repository 中发布。 .因此,您必须检查源代码并自己构建它才能使用它。为此,请运行以下命令:

svn checkout http://svn.codehaus.org/mojo/trunk/mojo/dbunit-maven-plugin/ dbunit-maven-plugin
cd dbunit-maven-plugin
mvn install

快照存储库中没有该插件真的很奇怪,我 100% 确定它曾经是。

关于maven-2 - 如何在 dbunit-maven-plugin 中处理多个 src 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2153378/

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