Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
2.2.0
-
None
-
None
Description
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.
Attachments
Issue Links
- duplicates
-
IVY-1294 honor restriction of artifacts for pom file creating in makepom task
- Resolved