required property keys cannot have '.' in the name
--------------------------------------------------
Key: ARCHETYPE-332
URL: http://jira.codehaus.org/browse/ARCHETYPE-332
Project: Maven Archetype
Issue Type: Bug
Affects Versions: 2.0-alpha-5
Reporter: Karl Palsson
Priority: Minor
Having the following in my archetype-metadata.xml:
{code}
<requiredProperty key="kversion_spring">
<defaultValue>3.0.3.RELEASE</defaultValue>
</requiredProperty>
{code}
and the following in my archetype-resources/pom.xml
{code}
<properties>
<version.spring>${kversion_spring}</version.spring>
</properties>
{code}
generates code as expected (below), however, if the key is "kversion.spring"
then the property is not expanded.
{code}
<properties>
<version.spring>3.0.3.RELEASE</version.spring>
</properties>
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira