You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2013/01/01 22:16:00 UTC

svn commit: r1427564 - in /ant/ivy/core/branches/2.3.x: ./ src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java

Author: maartenc
Date: Tue Jan  1 21:15:59 2013
New Revision: 1427564

URL: http://svn.apache.org/viewvc?rev=1427564&view=rev
Log:
Add '2.3' as allowed version in ivy.xml files. (merged from trunk)

Modified:
    ant/ivy/core/branches/2.3.x/   (props changed)
    ant/ivy/core/branches/2.3.x/src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java

Propchange: ant/ivy/core/branches/2.3.x/
------------------------------------------------------------------------------
  Merged /ant/ivy/core/trunk:r1427563

Modified: ant/ivy/core/branches/2.3.x/src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.3.x/src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java?rev=1427564&r1=1427563&r2=1427564&view=diff
==============================================================================
--- ant/ivy/core/branches/2.3.x/src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java (original)
+++ ant/ivy/core/branches/2.3.x/src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java Tue Jan  1 21:15:59 2013
@@ -207,7 +207,7 @@ public class XmlModuleDescriptorParser e
         }
 
         protected static final List ALLOWED_VERSIONS = Arrays.asList(
-            new String[] {"1.0", "1.1", "1.2", "1.3", "1.4", "2.0", "2.1", "2.2"});
+            new String[] {"1.0", "1.1", "1.2", "1.3", "1.4", "2.0", "2.1", "2.2", "2.3"});
 
         /* how and what do we have to parse */
         private ParserSettings settings;