замена ўласцівасці архетыпа maven (maven archetype property substitution)


問題描述

замена ўласцівасці архетыпа maven (maven archetype property substitution)

Anybody knows is it possible to make substitution for default value of one requredProperty to another in archetype‑metadata.xml ?

So, I try to do something like this:

<requiredProperty key="name"/>
<requiredProperty key="groupId">
   <defaultValue>com.mycompamy.${name}</defaultValue>
</requiredProperty>

But when I start to generate project from artifact in interactive mode, maven asks me about groupId property first. But not for name as I expected.

Is it possible to change this behaviour?

‑‑‑‑‑

參考解法

方法 1:

Your problem is caused by required property loading order. Maven loads every custom required property in alphabetical order. You probably cant change it. But there are 2 ways which will solve your problem:

  1. Renaming ur variables like this:

    "0_name"

    "1_groupId"

    Now it will ask you about name firstly.

  2. Use full maven command, passing only name parameter

    mvn archetype:generate ‑DarchetypeGroupId=?? ‑DarchetypeArtifactId=?? ‑DgroupId=?? ‑DartifactId=?? ‑Dversion=?? ‑Dpackage=?? ‑Dname=??

    Replace ?? with valid parameters

Hope it will helps you. 

EDIT: now i see an asked time. Pretty offtopic but maybe it will help someone else

(by user1723682countryroadscat)

參考文件

  1. maven archetype property substitution (CC BY‑SA 3.0/4.0)

#maven-3 #maven-archetype






相關問題

Maven <include> wildcard cocok dengan nama folder parsial (Maven <include> wildcard match on partial folder name)

Eclipse 中使用 MAVEN 3.04 的動態 Web 應用程序 (Dynamic web application in eclipse using MAVEN 3.04)

Множныя рэпазітары Maven3 (Maven3 multiple repos)

замена ўласцівасці архетыпа maven (maven archetype property substitution)

Maven 發布和版本 Maven 插件 (Maven release and versions maven plugin)

Maven-glassfish-plugin:如何指定部署目標? (Maven-glassfish-plugin: how to specify deploy target?)

在 Maven WAR 構建中添加其他類 (Adding Additional classes in maven WAR build)

分佈式 Jenkins - Linux 上的主控和 Windows 上的從屬 - 如何配置節點特定設置 (Distributed Jenkins- Master on Linux and slave on windows- How to configure node specific setting)

如何觸發Maven SCM插件根據現有目錄自動切換目標? (How to trigger Maven SCM plugin to automatically switch goals based on existing directory?)

使用 MongoDB 存儲數據的 Java 應用程序是否需要 Maven? (Is Maven necessary for a Java application that uses MongoDB to store data?)

“el-api”在 pom.xml 中什麼時候有用? (When is "el-api" useful in pom.xml?)

無法在 JDK7 上運行 Maven 3.6.3 (Can't run Maven 3.6.3 on JDK7)







留言討論