You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/04/24 01:36:56 UTC

svn commit: r396338 - in /maven/maven-1: core/trunk/ plugins-sandbox/trunk/abbot/ plugins-sandbox/trunk/abbot/xdocs/ plugins-sandbox/trunk/aspectwerkz/ plugins-sandbox/trunk/aspectwerkz/xdocs/ plugins-sandbox/trunk/hibernate/ plugins-sandbox/trunk/hibe...

Author: aheritier
Date: Sun Apr 23 16:36:53 2006
New Revision: 396338

URL: http://svn.apache.org/viewcvs?rev=396338&view=rev
Log:
MAVEN-1753 : Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver 1.1 dependency for xerces.

Modified:
    maven/maven-1/core/trunk/build-bootstrap.xml
    maven/maven-1/core/trunk/project.xml
    maven/maven-1/plugins-sandbox/trunk/abbot/project.xml
    maven/maven-1/plugins-sandbox/trunk/abbot/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/aspectwerkz/project.xml
    maven/maven-1/plugins-sandbox/trunk/aspectwerkz/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/hibernate/project.xml
    maven/maven-1/plugins-sandbox/trunk/hibernate/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/j2ee/plugin.jelly
    maven/maven-1/plugins-sandbox/trunk/j2ee/project.xml
    maven/maven-1/plugins-sandbox/trunk/j2ee/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/jcoverage/plugin.jelly
    maven/maven-1/plugins-sandbox/trunk/jcoverage/project.xml
    maven/maven-1/plugins-sandbox/trunk/jcoverage/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/plugins-parent/project.properties
    maven/maven-1/plugins-sandbox/trunk/release/project.xml
    maven/maven-1/plugins-sandbox/trunk/release/xdocs/changes.xml
    maven/maven-1/plugins-sandbox/trunk/struts/project.xml
    maven/maven-1/plugins-sandbox/trunk/struts/xdocs/changes.xml
    maven/maven-1/plugins/trunk/changelog/project.xml
    maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml
    maven/maven-1/plugins/trunk/changes/project.xml
    maven/maven-1/plugins/trunk/changes/xdocs/changes.xml
    maven/maven-1/plugins/trunk/html2xdoc/project.xml
    maven/maven-1/plugins/trunk/html2xdoc/xdocs/changes.xml
    maven/maven-1/plugins/trunk/jalopy/project.xml
    maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml
    maven/maven-1/plugins/trunk/jdepend/project.xml
    maven/maven-1/plugins/trunk/jdepend/xdocs/changes.xml
    maven/maven-1/plugins/trunk/jellydoc/plugin.jelly
    maven/maven-1/plugins/trunk/jellydoc/project.xml
    maven/maven-1/plugins/trunk/jellydoc/xdocs/changes.xml
    maven/maven-1/plugins/trunk/pdf/plugin.jelly
    maven/maven-1/plugins/trunk/pdf/project.xml
    maven/maven-1/plugins/trunk/pdf/xdocs/changes.xml
    maven/maven-1/plugins/trunk/plugin/project.xml
    maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml
    maven/maven-1/plugins/trunk/plugins-parent/project.properties
    maven/maven-1/plugins/trunk/test/plugin.jelly
    maven/maven-1/plugins/trunk/test/project.xml
    maven/maven-1/plugins/trunk/test/xdocs/changes.xml
    maven/maven-1/plugins/trunk/xdoc/project.xml
    maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml

Modified: maven/maven-1/core/trunk/build-bootstrap.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/build-bootstrap.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/core/trunk/build-bootstrap.xml (original)
+++ maven/maven-1/core/trunk/build-bootstrap.xml Sun Apr 23 16:36:53 2006
@@ -300,7 +300,8 @@
     <mkdir dir="${maven.bootstrap.install.dir}/lib/endorsed" />
     <move todir="${maven.bootstrap.install.dir}/lib/endorsed">
       <fileset dir="${maven.bootstrap.install.dir}/lib">
-        <include name="xmlParserAPIs-*.jar" />
+        <include name="xml-apis-*.jar" />
+        <include name="xml-resolver-*.jar" />
         <include name="xercesImpl-*.jar" />
       </fileset>
     </move>
@@ -308,7 +309,8 @@
     <!-- Don't duplicate endorsed files -->
     <delete>
       <fileset dir="${maven.bootstrap.install.dir}/lib">
-        <include name="xmlParserAPIs-*.jar" />
+        <include name="xml-apis-*.jar" />
+        <include name="xml-resolver-*.jar" />
         <include name="xercesImpl-*.jar" />
       </fileset>
     </delete>

Modified: maven/maven-1/core/trunk/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/core/trunk/project.xml (original)
+++ maven/maven-1/core/trunk/project.xml Sun Apr 23 16:36:53 2006
@@ -622,10 +622,19 @@
       <url>http://logging.apache.org/log4j/docs/</url>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <endorsed>true</endorsed>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <endorsed>true</endorsed>
       </properties>
@@ -633,7 +642,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <endorsed>true</endorsed>

Modified: maven/maven-1/plugins-sandbox/trunk/abbot/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/abbot/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/abbot/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/abbot/project.xml Sun Apr 23 16:36:53 2006
@@ -109,19 +109,34 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
+      <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <abbot.editor>true</abbot.editor>
         <abbot.webstart>true</abbot.webstart>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <abbot.editor>true</abbot.editor>
         <abbot.webstart>true</abbot.webstart>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <abbot.editor>true</abbot.editor>
+        <abbot.webstart>true</abbot.webstart>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
     </dependency>
     <dependency>

Modified: maven/maven-1/plugins-sandbox/trunk/abbot/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/abbot/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/abbot/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/abbot/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -6,14 +6,13 @@
   </properties>
   <body>
     <release version="1.2-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
         <ul>
           <li>ant v1.5.3-1 -> v1.6.5</li>
           <li>ant-junit (ant-optional) v1.5.3-1 -> v1.6.5</li>
           <li>commons-jelly-tags-xml v1.0 -> v1.1</li>
           <li>jdom v b10 -> v1.0</li>
-          <li>xercesImpl v 2.4.0 -> v2.6.2</li>
-          <li>xmlParserAPIs v 2.2.1 -> v2.6.2</li>
         </ul>
       </action>
       <action dev="vmassol" type="update">

Modified: maven/maven-1/plugins-sandbox/trunk/aspectwerkz/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/aspectwerkz/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/aspectwerkz/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/aspectwerkz/project.xml Sun Apr 23 16:36:53 2006
@@ -21,7 +21,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-aspectwerkz-plugin</id>
   <name>Maven AspectWerkz Plugin</name>
-  <currentVersion>1.2</currentVersion>
+  <currentVersion>1.3-SNAPSHOT</currentVersion>
   <description>Plugin for AspectWerkz</description>
   <shortDescription>AspectWerkz plugin</shortDescription>
   <versions>
@@ -103,12 +103,29 @@
     <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
-      <version>1.0.b2</version>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>xerces</groupId>
-      <artifactId>xerces</artifactId>
-      <version>2.4.0</version>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.0</version>
+      <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
   </dependencies>
 </project>

Modified: maven/maven-1/plugins-sandbox/trunk/aspectwerkz/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/aspectwerkz/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/aspectwerkz/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/aspectwerkz/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -24,6 +24,9 @@
     <author email="vmassol@apache.org">Vincent Massol</author>
   </properties>
   <body>
+    <release version="1.3-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
+    </release>
     <release version="1.2" date="2004-05-15"></release>
     <release version="1.1" date="2004-03-22">
       <action dev="brett" type="fix">Fixes for JDK 1.3 in relation to XML parsers.</action>

Modified: maven/maven-1/plugins-sandbox/trunk/hibernate/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/hibernate/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/hibernate/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/hibernate/project.xml Sun Apr 23 16:36:53 2006
@@ -173,16 +173,31 @@
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>odmg</groupId>

Modified: maven/maven-1/plugins-sandbox/trunk/hibernate/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/hibernate/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/hibernate/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/hibernate/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="1.4-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
         <ul>
           <li>ant v1.5.3-1 -> v1.6.5</li>
@@ -32,8 +33,6 @@
           <li>commons-jelly v1.0-beta-4 -> v1.0</li>
           <li>commons-logging v1.0.3 -> v1.0.4</li>
           <li>log4j v1.2.8 -> v1.2.12</li>
-          <li>xercesImpl v 2.4.0 -> v2.6.2</li>
-          <li>xml-apis v 1.0.b2 -> xmlParserAPIs v2.6.2</li>
         </ul>
       </action>
     </release>

Modified: maven/maven-1/plugins-sandbox/trunk/j2ee/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/j2ee/plugin.jelly?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/j2ee/plugin.jelly (original)
+++ maven/maven-1/plugins-sandbox/trunk/j2ee/plugin.jelly Sun Apr 23 16:36:53 2006
@@ -45,7 +45,7 @@
         <ant:pathelement path="${plugin.dir}" />
         <ant:pathelement path="${plugin.getDependencyPath('ant')}"/>
         <ant:pathelement path="${plugin.getDependencyPath('dom4j')}"/>
-        <ant:pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
+        <ant:pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
         <ant:pathelement path="${plugin.getDependencyPath('commons-logging')}"/>
       </ant:classpath>
     </ant:taskdef>

Modified: maven/maven-1/plugins-sandbox/trunk/j2ee/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/j2ee/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/j2ee/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/j2ee/project.xml Sun Apr 23 16:36:53 2006
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!-- 
 /*
  * Copyright 2001-2004 The Apache Software Foundation.
@@ -105,12 +105,13 @@
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <classloader>root</classloader>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
     </dependency>
     <dependency>

Modified: maven/maven-1/plugins-sandbox/trunk/j2ee/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/j2ee/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/j2ee/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/j2ee/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -26,6 +26,7 @@
   </properties>
   <body>
     <release version="1.6-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Replace the deprecated xmlParserAPIs by xml-apis 1.3.03.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
         <ul>
           <li>commons-logging v1.0.3 -> v1.0.4</li>

Modified: maven/maven-1/plugins-sandbox/trunk/jcoverage/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/jcoverage/plugin.jelly?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/jcoverage/plugin.jelly (original)
+++ maven/maven-1/plugins-sandbox/trunk/jcoverage/plugin.jelly Sun Apr 23 16:36:53 2006
@@ -45,7 +45,8 @@
     <ant:pathelement path="${plugin.getDependencyPath('oro')}"/>
     <ant:pathelement path="${plugin.getDependencyPath('junit')}"/>
     <ant:pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
-    <ant:pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
+    <ant:pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
+    <ant:pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
   </ant:path>
 
   <ant:taskdef classpath="${plugin.getDependencyPath('jcoverage')}" resource="tasks.properties" />

Modified: maven/maven-1/plugins-sandbox/trunk/jcoverage/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/jcoverage/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/jcoverage/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/jcoverage/project.xml Sun Apr 23 16:36:53 2006
@@ -152,16 +152,31 @@
       <url>http://www.extreme.indiana.edu/xgws/xsoap/xpp/</url>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>commons-jelly</groupId>

Modified: maven/maven-1/plugins-sandbox/trunk/jcoverage/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/jcoverage/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/jcoverage/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/jcoverage/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -25,13 +25,12 @@
   </properties>
   <body>
     <release version="1.1" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
         <ul>
           <li>log4j v1.2.8 -> v1.2.12</li>        
           <li>oro v2.0.7 -> v2.0.8</li>
           <li>velocity v1.3 -> v1.4</li>
-          <li>xercesImpl v 2.4.0 -> v2.6.2</li>
-          <li>xmlParserAPIs v 2.2.1 -> v2.6.2</li>
         </ul>
       </action>
       <action dev="evenisse" type="fix">Open report in a new window.</action>

Modified: maven/maven-1/plugins-sandbox/trunk/plugins-parent/project.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/plugins-parent/project.properties?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/plugins-parent/project.properties (original)
+++ maven/maven-1/plugins-sandbox/trunk/plugins-parent/project.properties Sun Apr 23 16:36:53 2006
@@ -79,6 +79,9 @@
 maven.jar.wagon-file=1.0-alpha-4
 maven.jar.wagon-http=1.0-alpha-3
 maven.jar.wagon-provider-api=1.0-alpha-3
+maven.jar.xercesImpl=2.8.0
+maven.jar.xml-apis=1.3.03
+maven.jar.xml-resolver=1.1
 
 maven.jar.maven = ${maven.home}/lib/maven.jar
 

Modified: maven/maven-1/plugins-sandbox/trunk/release/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/release/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/release/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/release/project.xml Sun Apr 23 16:36:53 2006
@@ -85,10 +85,13 @@
       <version>1.0-FCS</version>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>commons-jelly</groupId>

Modified: maven/maven-1/plugins-sandbox/trunk/release/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/release/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/release/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/release/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -26,6 +26,7 @@
   </properties>
   <body>
     <release version="1.5-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Replace the deprecated xmlParserAPIs by xml-apis 1.3.03.</action>
       <action dev="ltheussl" type="fix" issue="MPRELEASE-12" due-to="Dennis Lundberg">The encoding of the project.xml file is not preserved after doing <code>release:transform</code>.</action>
       <action dev="brett" type="fix" issue="MPRELEASE-11">handle non-jar dependencies</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
@@ -33,7 +34,6 @@
           <li>maven v1.0-rc2 -> v1.0.2</li>
           <li>dom4j v1.4-dev-8 -> v1.4</li>
           <li>commons-jelly v1.0-beta-4 -> v1.0</li>
-          <li>xml-apis v 1.0.b2 -> xmlParserAPIs v2.6.2</li>
         </ul>
       </action>
       <action dev="fgiust" type="fix" issue="MPSCM-64">Handle poms with a namespace</action>

Modified: maven/maven-1/plugins-sandbox/trunk/struts/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/struts/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/struts/project.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/struts/project.xml Sun Apr 23 16:36:53 2006
@@ -86,13 +86,29 @@
     <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
-      <version>1.0.b2</version>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
     <dependency>
       <groupId>xerces</groupId>
-      <artifactId>xerces</artifactId>
-      <version>2.4.0</version>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
     </dependency>
   </dependencies>
 </project>

Modified: maven/maven-1/plugins-sandbox/trunk/struts/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins-sandbox/trunk/struts/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins-sandbox/trunk/struts/xdocs/changes.xml (original)
+++ maven/maven-1/plugins-sandbox/trunk/struts/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -24,7 +24,8 @@
     <author email="dion@apache.org">dIon Gillard</author>
   </properties>
   <body>
-    <release version="1.4-SNAPSHOT" date="in CVS">
+    <release version="1.4-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="dion" type="update">Update very old docs</action>
       <action dev="dion" type="fix">Fix classpath for the Struts war validator</action>
       <action dev="dion" type="update">Add a plugin test project that tests the validator</action>

Modified: maven/maven-1/plugins/trunk/changelog/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/project.xml (original)
+++ maven/maven-1/plugins/trunk/changelog/project.xml Sun Apr 23 16:36:53 2006
@@ -216,18 +216,27 @@
     </dependency>
     <!-- Required to build under for JDK 1.3 because we fork junit -->
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
     </dependency>
     <dependency>
       <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="1.10" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update">Upgrade to Junit 3.8.2.</action>
     </release>
     <release version="1.9.1" date="2006-03-26">

Modified: maven/maven-1/plugins/trunk/changes/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changes/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changes/project.xml (original)
+++ maven/maven-1/plugins/trunk/changes/project.xml Sun Apr 23 16:36:53 2006
@@ -108,10 +108,10 @@
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>

Modified: maven/maven-1/plugins/trunk/changes/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changes/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changes/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/changes/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -23,7 +23,8 @@
     <author email="vmassol@apache.org">Vincent Massol</author>
   </properties>
   <body>
-    <release version="1.6.1" date="In SVN">
+    <release version="1.6.1-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Replace the deprecated xmlParserAPIs by xml-apis 1.3.03.</action>
       <action dev="aheritier" type="update">Upgrade to commons-io 1.2.</action>
       <action dev="ltheussl" type="fix" issue="MPCHANGES-30">Missing <code>changes.xml</code> makes report fail.</action>
       <action dev="aheritier" type="fix" issue="MPCHANGES-29">Add icons used by this plugin. This must be independent of the xdoc plugin.</action>

Modified: maven/maven-1/plugins/trunk/html2xdoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/html2xdoc/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/html2xdoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/html2xdoc/project.xml Sun Apr 23 16:36:53 2006
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-html2xdoc-plugin</id>
   <name>Maven Html2XDoc Plugin</name>
-  <currentVersion>1.4</currentVersion>
+  <currentVersion>1.5-SNAPSHOT</currentVersion>
   <gumpRepositoryId>jakarta</gumpRepositoryId>
   <description>Creates XDoc documentation from normal HTML documentation.</description>
   <shortDescription>HTML to xdoc transformer</shortDescription>
@@ -97,10 +97,19 @@
       <url>http://www.dom4j.org/</url>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -108,7 +117,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/html2xdoc/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/html2xdoc/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/html2xdoc/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/html2xdoc/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -23,6 +23,9 @@
     <author email="dion@multitask.com.au">dIon Gillard</author>
   </properties>
   <body>
+    <release version="1.5-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
+    </release>
     <release version="1.4" date="2006-01-15">
       <action dev="ltheussl" type="update">Update documentation.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :

Modified: maven/maven-1/plugins/trunk/jalopy/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jalopy/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/project.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/project.xml Sun Apr 23 16:36:53 2006
@@ -105,10 +105,10 @@
       <version>1.2</version>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>

Modified: maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -25,6 +25,7 @@
   <body>
     <release version="1.4.1-SNAPSHOT" date="In SVN">
       <action dev="aheritier" type="fix" issue="MPJALOPY-9">Jalopy classes aren't found.</action>
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Replace the deprecated xmlParserAPIs by xml-apis 1.3.03.</action>
     </release>
     <release version="1.4" date="2006-01-15">
       <action dev="carlos" type="update">Update to jalopy 1.5b5 adding support for java 5.</action>

Modified: maven/maven-1/plugins/trunk/jdepend/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jdepend/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jdepend/project.xml (original)
+++ maven/maven-1/plugins/trunk/jdepend/project.xml Sun Apr 23 16:36:53 2006
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-jdepend-plugin</id>
   <name>Maven JDepend Plugin</name>
-  <currentVersion>1.6.1</currentVersion>
+  <currentVersion>1.7-SNAPSHOT</currentVersion>
   <shortDescription>JDepend generates design quality metrics.</shortDescription>
   <description>JDepend traverses Java class file directories and generates design quality metrics for each Java package. JDepend allows you to automatically measure the quality of a design in terms of its extensibility, reusability, and maintainability to manage package dependencies effectively.</description>
   <versions>
@@ -120,10 +120,19 @@
       <version>2.9.1</version>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -131,7 +140,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/jdepend/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jdepend/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jdepend/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/jdepend/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -23,6 +23,9 @@
     <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
   </properties>
   <body>
+    <release version="1.7-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
+    </release>
     <release version="1.6.1" date="2006-03-26">
       <action dev="ltheussl" type="fix" issue="MPJDEPEND-8">Set
         <code>maven.jdepend.components</code>to empty by default for backwards compatibility.

Modified: maven/maven-1/plugins/trunk/jellydoc/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jellydoc/plugin.jelly?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jellydoc/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/jellydoc/plugin.jelly Sun Apr 23 16:36:53 2006
@@ -114,7 +114,8 @@
       <ant:pathelement path="${plugin.getDependencyPath('nekohtml')}"/>
       <ant:pathelement path="${plugin.getDependencyPath('dom4j')}"/>
       <ant:pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
-      <ant:pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
+      <ant:pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
+      <ant:pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
       <ant:pathelement path="${plugin.getDependencyPath('commons-jelly')}"/>
     </ant:path>
   </goal>

Modified: maven/maven-1/plugins/trunk/jellydoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jellydoc/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jellydoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/jellydoc/project.xml Sun Apr 23 16:36:53 2006
@@ -85,10 +85,19 @@
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -96,7 +105,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/jellydoc/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jellydoc/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jellydoc/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/jellydoc/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -26,6 +26,7 @@
   </properties>
   <body>
     <release version="1.4-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
         <ul>
           <li>commons-jelly-tags-xml v1.0 -> v1.1</li>

Modified: maven/maven-1/plugins/trunk/pdf/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pdf/plugin.jelly?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pdf/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/pdf/plugin.jelly Sun Apr 23 16:36:53 2006
@@ -70,7 +70,6 @@
     </j:if>
     <!-- internal variables -->
     <j:set var="internal_pdf_workingDir" value="${maven.build.dir}/pdf"/>
-    <j:set var="java_version" value="${java.specification.version}"/>
     <j:if test="${maven.pdf.debug}">
       <ant:echo>
 ### Debug mode is on ###
@@ -109,7 +108,6 @@
 === pdf internal variables ===
 ==============================
 internal_pdf_workingDir         = [${internal_pdf_workingDir}]
-java_version                    = [${java_version}]
 maven.application.version       = [${maven.application.version}]
 plugin.currentVersion           = [${plugin.currentVersion}]
       </ant:echo>
@@ -228,12 +226,14 @@
       <arg value="-PARAM"/>
       <arg value="footer_Height"/>
       <arg value="${maven.pdf.cover.footerHeight}"/>
+      <sysproperty key="javax.xml.parsers.DocumentBuilderFactory" value="org.apache.xerces.jaxp.DocumentBuilderFactoryImp"/>
+      <sysproperty key="javax.xml.parsers.SAXParserFactory" value="org.apache.xerces.jaxp.SAXParserFactoryImpl"/>
+      <sysproperty key="java.endorsed.dirs" path="${java.home}/lib/endorsed;${maven.home}/lib/endorsed}"/>
       <classpath>
         <pathelement location="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
         <pathelement location="${plugin.getDependencyPath('xalan')}"/>
-        <j:if test="${java_version.compareTo('1.4') lt 0}">
-          <pathelement location="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-        </j:if>
+        <pathelement location="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
+        <pathelement location="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
       </classpath>
     </java>
   </goal>
@@ -274,7 +274,6 @@
     <echo>Generating ${internal_pdf_workingDir}/${maven.pdf.pdfName} ...</echo>
     <echo>Config file: ${internal_pdf_workingDir}/userconfig.xml</echo>
     <java classname="org.apache.fop.apps.Fop" fork="true" failonerror="true">
-      <sysproperty key="javax.xml.parsers.SAXParserFactory" value="org.apache.xerces.jaxp.SAXParserFactoryImpl"/>
       <sysproperty key="javax.xml.transform.TransformerFactory" value="org.apache.xalan.processor.TransformerFactoryImpl"/>
       <!-- System proxies for jdk 1.5+ -->
       <sysproperty key="java.net.useSystemProxies" value="true"/>
@@ -301,11 +300,13 @@
       <arg value="${internal_pdf_workingDir}/project.fo"/>
       <arg value="-pdf"/>
       <arg value="${internal_pdf_workingDir}/${maven.pdf.pdfName}"/>
+      <sysproperty key="javax.xml.parsers.DocumentBuilderFactory" value="org.apache.xerces.jaxp.DocumentBuilderFactoryImp"/>
+      <sysproperty key="javax.xml.parsers.SAXParserFactory" value="org.apache.xerces.jaxp.SAXParserFactoryImpl"/>
+      <sysproperty key="java.endorsed.dirs" path="${java.home}/lib/endorsed;${maven.home}/lib/endorsed}"/>
       <classpath>
         <pathelement location="${plugin.getDependencyPath('fop')}"/>
-        <j:if test="${java_version.compareTo('1.4') lt 0}">
-          <pathelement location="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-        </j:if>
+        <pathelement location="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
+        <pathelement location="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
         <pathelement location="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
         <pathelement location="${plugin.getDependencyPath('xalan')}"/>
         <pathelement location="${plugin.getDependencyPath('batik')}"/>

Modified: maven/maven-1/plugins/trunk/pdf/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pdf/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pdf/project.xml (original)
+++ maven/maven-1/plugins/trunk/pdf/project.xml Sun Apr 23 16:36:53 2006
@@ -128,10 +128,19 @@
       <url>http://avalon.apache.org/framework/</url>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -139,7 +148,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/pdf/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pdf/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pdf/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/pdf/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -25,17 +25,13 @@
   </properties>
   <body>
     <release version="2.5-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update">An icon is added to the report entry in the navigation. Works only with the xdoc plugin 1.10 and above.</action>
       <action dev="aheritier" type="fix">The links generated in the reports list are wrong. Works only with the xdoc plugin 1.10 and above.</action>
       <action dev="ltheussl" type="add" due-to="Greg Ludington">New property <code>maven.pdf.createBookmarks</code> to create PDF bookmarks.</action>
       <action dev="ltheussl" type="fix" issue="MPPDF-53">Title and dates are incorrect when used with Maven 1.0.2.</action>
       <action dev="ltheussl" type="fix" issue="MPPDF-54">Identical ids in tables in different documents caused a build failure.</action>
-      <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
-        <ul>
-          <li>xercesImpl v 2.4.0 -> v2.6.2</li>
-          <li>xml-apis v 1.0.b2 -> xmlParserAPIs v2.6.2</li>
-        </ul>
-      </action>
+      <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins.</action>
       <action dev="aheritier" type="fix" issue="MPPDF-47">An error occurs if the project logo or the company logo aren't defined.</action>
       <action dev="ltheussl" type="fix" issue="MPPDF-37">Page numbering not correct with more than 10 items in menu.</action>
       <action dev="ltheussl" type="add" issue="MPPDF-48">New goal <code>pdf:navigation-validate</code> to validate the pdf navigation file.</action>

Modified: maven/maven-1/plugins/trunk/plugin/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/project.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/project.xml Sun Apr 23 16:36:53 2006
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-plugin-plugin</id>
   <name>Maven Plugin Plugin</name>
-  <currentVersion>1.7</currentVersion>
+  <currentVersion>1.8-SNAPSHOT</currentVersion>
   <description>Maven Plugin management plugin.</description>
   <shortDescription>Maven Plugin plugin</shortDescription>
   <versions>
@@ -170,10 +170,19 @@
       <version>1.0-FCS-full</version>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -181,7 +190,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -23,6 +23,9 @@
     <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
   </properties>
   <body>
+    <release version="1.8-SNAPSHOT" date="In SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
+    </release>
     <release version="1.7" date="2005-12-12">
       <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
         <ul>

Modified: maven/maven-1/plugins/trunk/plugins-parent/project.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugins-parent/project.properties?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugins-parent/project.properties (original)
+++ maven/maven-1/plugins/trunk/plugins-parent/project.properties Sun Apr 23 16:36:53 2006
@@ -79,8 +79,9 @@
 maven.jar.wagon-file=1.0-alpha-4
 maven.jar.wagon-http=1.0-alpha-3
 maven.jar.wagon-provider-api=1.0-alpha-3
-maven.jar.xercesImpl=2.6.2
-maven.jar.xmlParserAPIs=2.6.2
+maven.jar.xercesImpl=2.8.0
+maven.jar.xml-apis=1.3.03
+maven.jar.xml-resolver=1.1
 
 maven.jar.maven = ${maven.home}/lib/maven.jar
 

Modified: maven/maven-1/plugins/trunk/test/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/plugin.jelly?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/test/plugin.jelly Sun Apr 23 16:36:53 2006
@@ -47,7 +47,6 @@
     <u:tokenize var="_listOfTestSrcDirs" delim="${path.separator}">${_testSrcDirs}</u:tokenize>
 
     <j:if test="${unitTestSourcesPresent == 'true' and context.getVariable('maven.test.skip') != 'true'}">
-      
       <javac
         destdir="${maven.test.dest}"
         excludes="**/package.html"
@@ -63,9 +62,10 @@
           <path refid="maven.dependency.classpath"/>
           <pathelement path="${plugin.getDependencyPath('junit')}"/>
           <j:if test="${!context.getVariable('maven.junit.fork').toString().trim().equalsIgnoreCase('no') and !context.getVariable('maven.test.excludeXmlApis').toString().trim().equalsIgnoreCase('yes') }">
-            <pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-            <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+            <pathelement location="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
           </j:if>
+          <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+          <pathelement location="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
         </classpath>
         <src>
           <path refid="maven.test.compile.src.set"/>
@@ -181,9 +181,10 @@
           <path refid="maven.dependency.classpath"/>
           <pathelement path="${plugin.getDependencyPath('junit')}"/>
           <j:if test="${!context.getVariable('maven.junit.fork').toString().trim().equalsIgnoreCase('no') and !context.getVariable('maven.test.excludeXmlApis').toString().trim().equalsIgnoreCase('yes') }">
-            <pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-            <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+  	        <pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
           </j:if>
+          <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+          <pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
           <j:if test="${not empty(context.getVariable('maven.test.classpath'))}">
             <pathelement path="${maven.test.classpath}"/>
           </j:if>
@@ -247,9 +248,10 @@
         <path refid="maven.dependency.classpath"/>
         <pathelement path="${plugin.getDependencyPath('junit')}"/>
         <j:if test="${!context.getVariable('maven.junit.fork').toString().trim().equalsIgnoreCase('no') and !context.getVariable('maven.test.excludeXmlApis').toString().trim().equalsIgnoreCase('yes') }">
-          <pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-          <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+			    <pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
         </j:if>
+        <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+        <pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
         <j:if test="${not empty(context.getVariable('maven.test.classpath'))}">
           <pathelement path="${maven.test.classpath}"/>
         </j:if>
@@ -326,16 +328,16 @@
             </j:forEach>
             <formatter type="xml"/>
             <formatter type="${maven.junit.format}" usefile="${maven.junit.usefile}"/>
-
             <classpath>
               <pathelement location="${maven.test.dest}"/>
               <pathelement location="${maven.build.dest}"/>
               <path refid="maven.dependency.classpath"/>
               <pathelement path="${plugin.getDependencyPath('junit')}"/>
               <j:if test="${!context.getVariable('maven.junit.fork').toString().trim().equalsIgnoreCase('no') and !context.getVariable('maven.test.excludeXmlApis').toString().trim().equalsIgnoreCase('yes') }">
-                <pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-                <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+					      <pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
               </j:if>
+              <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+              <pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
               <j:if test="${not empty(context.getVariable('maven.test.classpath'))}">
                 <pathelement path="${maven.test.classpath}"/>
               </j:if>
@@ -435,16 +437,16 @@
             </j:forEach>
             <formatter type="xml"/>
             <formatter type="${maven.junit.format}" usefile="${maven.junit.usefile}"/>
-
             <classpath>
               <pathelement location="${maven.test.dest}"/>
               <pathelement location="${maven.build.dest}"/>
               <path refid="maven.dependency.classpath"/>
               <pathelement path="${plugin.getDependencyPath('junit')}"/>
               <j:if test="${!context.getVariable('maven.junit.fork').toString().trim().equalsIgnoreCase('no') and !context.getVariable('maven.test.excludeXmlApis').toString().trim().equalsIgnoreCase('yes') }">
-                <pathelement path="${plugin.getDependencyPath('xerces:xmlParserAPIs')}"/>
-                <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+  			        <pathelement path="${plugin.getDependencyPath('xml-apis:xml-apis')}"/>
               </j:if>
+              <pathelement path="${plugin.getDependencyPath('xerces:xercesImpl')}"/>
+              <pathelement path="${plugin.getDependencyPath('xml-resolver:xml-resolver')}"/>
               <j:if test="${not empty(context.getVariable('maven.test.classpath'))}">
                 <pathelement path="${maven.test.classpath}"/>
               </j:if>

Modified: maven/maven-1/plugins/trunk/test/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/project.xml (original)
+++ maven/maven-1/plugins/trunk/test/project.xml Sun Apr 23 16:36:53 2006
@@ -62,10 +62,19 @@
       </properties>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
+      <properties>
+        <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>
@@ -73,7 +82,7 @@
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.6.2</version>
+      <version>2.8.0</version>
       <url>http://xerces.apache.org/xerces2-j/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>

Modified: maven/maven-1/plugins/trunk/test/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/test/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -24,6 +24,7 @@
   </properties>
   <body>
     <release version="1.8-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update">Upgrade to Junit 3.8.2.</action>
       <action dev="ltheussl" type="fix" issue="MPTEST-49"><code>test:test</code> should honour the <code>maven.test.compile.src.set</code> variable.</action>
       <action dev="ltheussl" type="add" issue="MPTEST-43">Set junit's <code>showoutput</code> attribute if Maven is executed in debug (-X) mode.</action>
@@ -34,12 +35,7 @@
       <action dev="ltheussl" type="fix" issue="MPTEST-46">Do not execute <code>test:test-resources</code> and <code>test:compile</code> unless tests will be run.</action>
       <action dev="ltheussl" type="fix" issue="MPTEST-59"><code>test:single</code> should ignore <code>maven.test.skip=true</code>.</action>
       <action dev="ltheussl" type="fix" issue="MPTEST-39">Test failure doesn't halt execution of test suite.</action>
-      <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated : 
-        <ul>
-          <li>xercesImpl v 2.4.0 -> v2.6.2</li>
-          <li>xml-apis v 1.0.b2 -> xmlParserAPIs v2.6.2</li>
-        </ul>
-      </action>
+      <action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins.</action>
       <action dev="brett" type="add" due-to="Eric Hartmann" issue="MPTEST-55">Add maven.test.excludeXmlApis property to avoid duplicated Xerces</action>
     </release>
     <release version="1.7" date="2005-08-09">

Modified: maven/maven-1/plugins/trunk/xdoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/project.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/xdoc/project.xml Sun Apr 23 16:36:53 2006
@@ -250,10 +250,10 @@
       <version>0.45</version>
     </dependency>
     <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xmlParserAPIs</artifactId>
-      <version>2.6.2</version>
-      <url>http://xerces.apache.org/xerces2-j/</url>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <url>http://xml.apache.org/commons/</url>
       <properties>
         <comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
       </properties>

Modified: maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml?rev=396338&r1=396337&r2=396338&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml Sun Apr 23 16:36:53 2006
@@ -27,6 +27,7 @@
   </properties>
   <body>
     <release version="1.10-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="update" issue="MAVEN-1753">Replace the deprecated xmlParserAPIs by xml-apis 1.3.03.</action>
       <action dev="ltheussl" type="add" issue="MPXDOC-192">Add a public DTD identifier for xdoc.</action>
       <action dev="aheritier" type="update">An image can be used in the menu entry for a report.</action>
       <action dev="aheritier" type="update">Item name is always displayed even if img attribute is setted. In the navigation file the new attribute 'hideName' can be used to hide the name in the link (if you want to display only the image for example).</action>