Author: maartenc
Date: Sat Nov  5 10:47:11 2011
New Revision: 1197923

URL: http://svn.apache.org/viewvc?rev=1197923&view=rev
Log:
FIX: Maven 'eclipse-plugin' packaging is now mapped to 'jar' extension (IVY-899)

Modified:
    ant/ivy/core/trunk/CHANGES.txt
    
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java

Modified: ant/ivy/core/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=1197923&r1=1197922&r2=1197923&view=diff
==============================================================================
--- ant/ivy/core/trunk/CHANGES.txt (original)
+++ ant/ivy/core/trunk/CHANGES.txt Sat Nov  5 10:47:11 2011
@@ -138,6 +138,7 @@ for detailed view of each issue, please 
 - IMPROVEMENT: ivy:retrieve can now convert 'dotted'-organisation names into a 
directory tree.
 - IMPROVEMENT: ivy:retrieve now accepts a nested mapper type.
 
+- FIX: Maven 'eclipse-plugin' packaging is now mapped to 'jar' extension 
(IVY-899)
 - FIX: Infinite loop in latest-compatible conflict manager (IVY-1233) (thanks 
to Payam Hekmat)
 - FIX: extends section of ivy.xml info does not replace variable in location 
tag (IVY-1287) (thanks to Jean-Louis Boudart)
 - FIX: Valid Path does not work for Filesystem Resolver (IVY-1268)

Modified: 
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java?rev=1197923&r1=1197922&r2=1197923&view=diff
==============================================================================
--- 
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
 (original)
+++ 
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
 Sat Nov  5 10:47:11 2011
@@ -115,7 +115,7 @@ public class PomModuleDescriptorBuilder 
     private static final String PROPERTIES = "m:properties";
     private static final String EXTRA_INFO_DELIMITER = "__";
     private static final Collection/*<String>*/ JAR_PACKAGINGS = Arrays.asList(
-                new String[] {"ejb", "bundle", "maven-plugin"});
+                new String[] {"ejb", "bundle", "maven-plugin", 
"eclipse-plugin"});
 
     
     static interface ConfMapper {


Reply via email to