makepom does not support exclusions
-----------------------------------

                 Key: IVY-1308
                 URL: https://issues.apache.org/jira/browse/IVY-1308
             Project: Ivy
          Issue Type: Bug
          Components: Maven Compatibility
    Affects Versions: 2.2.0
            Reporter: Douglas Palmer


Running makepom on:

    <dependency org="org.codehaus.groovy" name="groovy-all" rev="1.5.4">
      <exclude org="xpp3" module="xpp3_min"/>
    </dependency>

Should give:

    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>1.5.4</version>
      <optional>true</optional>
      <exclusions>
        <exclusion>
          <groupId>xpp3</groupId>
          <artifactId>xpp3_min</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

But the actual result is missing the exclusion.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to