Christian Schulte created MSHADE-121:
----------------------------------------

             Summary: Default value of parameter 'dependencyReducedPomLocation' 
broken.
                 Key: MSHADE-121
                 URL: https://jira.codehaus.org/browse/MSHADE-121
             Project: Maven 2.x Shade Plugin
          Issue Type: Bug
    Affects Versions: 1.7
            Reporter: Christian Schulte
            Priority: Critical


Upgrading the shade plugin from '1.6' to '1.7' breaks relative paths similar to 
MSHADE-23. This is due to an incorrect/missing default value for parameter 
'dependencyReducedPomLocation'.

{code}
/**
 * @parameter expression="${dependencyReducedPomLocation}" 
defaultValue="${basedir}/dependency-reduced-pom.xml"
 */
private File dependencyReducedPomLocation;
{code}

Should read 'default-value' instead of 'defaultValue'. Manually specifying

{xml}
<dependencyReducedPomLocation>${basedir}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
{xml}

solves this.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to