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 someth
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:
Renaming ur variables like this:
"0_name"
"1_groupId"
Now it will ask you about name firstly.
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