Maven原型:修改artifactId

时间:2015-06-02 10:49:36

标签: maven maven-archetype

在处理项目时,我的要求是创建一个模块。

命令如下:

mvn archetype:generate \
  -DarchetypeCatalog=local \
  -DartifactId=test-module

目标应具有以下文件结构

test-module
|--pom.xml
`--src
   `--main
      |--install
      |  `--install.sh
      `--scripts
         `--test_module.sh

我的整个目标是创建另一个派生自artifactId的变量(例如artifactIdWithUnderscore),用undercope -替换所有连字符_。这样我就可以使用更新的变量来创建文件。

示例:

+------------------+---------------------------------+
|INPUT - artifactId|OUTPUT - artifactIdWithUnderscore|
+------------------+---------------------------------+
|    test-module   |          test_module            |
|       temp       |             temp                |
| test-temp-module |       test_temp_module          |
+------------------+---------------------------------+

我尝试通过在 archetype-metadata.xml

中添加以下条目,将新变量创建为 artifactIdWithUnderscore

选项1:

<requiredProperty key="artifactIdWithUnderscore" >
  <defaultValue>${StringUtils.replace(${artifactId}, "-", "_")}</defaultValue>
</requiredProperty>

输出:

${StringUtils.replace(${artifactId}, "-", "_")}

选项2:

<requiredProperty key="artifactIdWithUnderscore" >
  <defaultValue>${artifactId.replaceAll("-", "_")}</defaultValue>
</requiredProperty>

输出:

maven_archetype_script

artifactId的上述值来自原型项目本身的POM。

选项3:

<requiredProperty key="artifactIdWithUnderscore" >
  <defaultValue>${artifactId}.replaceAll("-", "_")</defaultValue>
</requiredProperty>

输出:

test-module.replaceAll("-", "_")

请告诉我如何实现这一目标。

修改

选项4:

<requiredProperty key="artifactIdWithUnderscore" >
    <defaultValue>${__artifactId__.replaceAll("-", "_")}</defaultValue>
</requiredProperty>

输出:

INFO: Null reference [template 'artifactIdWithUnderscore', line 1, column 1] : ${__artifactId__.replaceAll("-", "_")} cannot be resolved. 
Define value for property 'artifactIdWithUnderscore': ${__artifactId__.replaceAll("-", "_")}: :

1 个答案:

答案 0 :(得分:0)

选项2适用于我:

<requiredProperty key="artifactIdWithoutDash">
  <defaultValue>${artifactId.replaceAll("-", ".")}</defaultValue>
</requiredProperty>

我可以使用__artifactIdWithoutDash__.sh有一个文件名来创建文件(在我的例子中是:some.letters .__ artifactIdWithoutDash __。cfg)