maven archetype:从现有属性的值生成requiredProperty的默认值

时间:2016-10-19 15:45:05

标签: maven maven-archetype

我想在archetype-metadata.xml中为requiredProperty设置一个默认值,使其基于从命令行传递的另一个属性。说

<requiredProperty key="customProperty">
        <defaultValue>${artifactId.toUpperCase()}</defaultValue>
</requiredProperty>

但是,当我使用生成的原型生成一个新项目时,项目的artifactId不是大写的,而是原型的artifactId。而当我把它改为

<requiredProperty key="customProperty">
        <defaultValue>${artifactId}</defaultValue>
</requiredProperty>

我按照人们的预期得到了项目的artifactId。

有没有办法根据另一个属性的值为自定义属性分配默认值?

注意:这仅在交互模式下发生。

如何重现:

mvn -B archetype:generate -DartifactId=archet -DgroupId=com.example -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=maven-archetype-archetype

出于某种原因,生成了archetype.xml。这是我的理解,这是一种旧格式。将其替换为archetype-metadata.xml(为示例而最小化):

<?xml version="1.0" encoding="UTF-8"?>
<archetype-descriptor name="basic">

    <requiredProperties>
        <requiredProperty key="customPropertyUppercased">
            <defaultValue>${artifactId.toUpperCase()}</defaultValue>
        </requiredProperty>
        <requiredProperty key="customProperty">
            <defaultValue>${artifactId}</defaultValue>
        </requiredProperty>

        <!--JUnit version to use in generated project-->
        <requiredProperty key="junit-version">
            <defaultValue>4.12</defaultValue>
        </requiredProperty>
    </requiredProperties>

    <fileSets>
        <fileSet filtered="true" packaged="true">
            <directory>src/main/java</directory>
        </fileSet>
        <fileSet filtered="true" packaged="true">
            <directory>src/test/java</directory>
        </fileSet>
    </fileSets>

</archetype-descriptor>

./src/main/resources/archetype-resources/src/main/java/App.java:

处的模板
package ${groupId}.${artifactId};

/**

${customPropertyUppercased}

${customProperty}

*/
public class App
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
    }
}

使用生成的原型生成新项目

mvn archetype:generate -DgroupId=com.example -DartifactId=stacktest -DarchetypeArtifactId=archet -DarchetypeGroupId=com.example -DarchetypeCatalog=local

将所有属性设置为默认值会生成stacktest/src/main/java/com/example/App.java:

package com.example.stacktest;

/**

ARCHET

stacktest

*/
public class App
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
    }
}

因此,customPropertyUppercased基于原型的artifactId,而customProperty则基于项目的artifactId。

1 个答案:

答案 0 :(得分:0)

这是原型插件中的一个错误,在此处记录: https://issues.apache.org/jira/browse/ARCHETYPE-490