Maven原型目录变量不起作用

时间:2018-07-15 07:01:52

标签: maven maven-archetype

我正在尝试使用Maven原型为我的项目创建基本的目录结构。这个想法是,将在src / main / java / $ {groupId} /Name.java中生成一个文件。

我遇到的问题是,当我生成原型时,结果文件树会复制groupId(参见图片)

Archetype Structure

archetype-metadata.xml中的文件集

    <fileSet filtered="true" packaged="true" encoding="UTF-8">
        <directory>src/main/java/__packageInPathFormat__/</directory>
        <includes>
            <include>**/*.java</include>
        </includes>
    </fileSet>

Generated File Tree

0 个答案:

没有答案