[regression] Properties used for interpolation of inherited properties can't be 
customized by child
---------------------------------------------------------------------------------------------------

                 Key: MNG-4102
                 URL: http://jira.codehaus.org/browse/MNG-4102
             Project: Maven 2
          Issue Type: Bug
          Components: Inheritance and Interpolation
    Affects Versions: 3.0-alpha-3
            Reporter: Benjamin Bentmann
            Priority: Minor


Parent POM:
{code:xml}
<properties>
  <overridden>PARENT</overridden>
  <!-- Test the effective value of this property in child when "overridden" is 
defined by child as well -->
  <interpolated>${overridden}</interpolated>
</properties>
{code}
Child POM:
{code:xml}
<properties>
  <overridden>CHILD</overridden>
</properties>
{code}
Effective child POM should be:
{code:xml}
<properties>
  <overridden>CHILD</overridden>
  <interpolated>CHILD</interpolated>
</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

        

Reply via email to