在archetype-metadata.xml中设置目录结构

时间:2017-10-18 15:52:08

标签: java maven pom.xml maven-archetype

我正在为我的项目创建maven-archetype。我在文件夹“archetype-resources”中有一个log4j.properties文件,我希望它在我的项目的“src / main / resources /”下,当我使用这个原型来创建maven项目时。如果我的xml设置如下,它不会在资源文件夹中添加任何内容:

archetype-metadata.xml

|

虽然它工作正常,但当我有

时将log4j.properties添加到根文件夹
<fileSet filtered="true" encoding="UTF-8">
    <directory>src/main/resources</directory>
    <includes>
        <include>**/log4j.properties</include>
    </includes>
</fileSet>

感谢任何帮助。谢谢:))

1 个答案:

答案 0 :(得分:0)

只需使用以下内容,它就可以工作。

<fileSet filtered="true">
  <directory>src/main/resources</directory>
</fileSet>