gpt4 book ai didi

maven - 使用 pom 文件从目标目录中删除或删除资源文件

转载 作者:行者123 更新时间:2023-12-03 08:50:39 28 4
gpt4 key购买 nike

我在 pom.xml 中有两个配置文件,我有一些已添加到目标资源目录中的资源文件:${project.build.outputDirectory}/resources在执行第一个配置文件期间。我需要做的是在执行第二个配置文件期间删除这些资源文件。
有没有办法从目标目录中删除或删除现有文件?

最佳答案

我得到了解决方案.. !!

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete>
<fileset dir="${project.build.outputDirectory}/resources" includes="*.xml" />
</delete>
</tasks>
</configuration>
</execution>
</executions>
</plugin>

供引用 - http://maven.apache.org/guides/mini/guide-building-for-different-environments.html

关于maven - 使用 pom 文件从目标目录中删除或删除资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18637626/

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