gpt4 book ai didi

maven-2 - Maven,过滤非资源文件

转载 作者:行者123 更新时间:2023-12-02 17:26:09 25 4
gpt4 key购买 nike

我在多个模块之间共享一个配置文件,并且我不希望该配置文件被烘焙到任何 JAR 中。

如何让 Maven 对未指定为资源但位于与根​​ POM 同一级别的配置文件夹中的文件进行(资源)过滤?

最佳答案

您可以使用Maven Resources Plugin及其 resources:copy-resources魔力。来自示例:

Copy Resources

You can use the mojo copy-resources to copy resources which are not in the default maven layout or not declared in the build/resources element and attach it to a phase

<project>
...
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/extra-resources</outputDirectory>
<resources>
<resource>
<directory>src/non-packaged-resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
...
</build>
...
</project>

另一个选择是使用 Maven AntRun Plugin和 Ant 过滤功能(例如使用 Filter 和/或 Copy 任务),但上面看起来很好。

关于maven-2 - Maven,过滤非资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3388856/

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