You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/11/30 10:20:40 UTC

svn commit: r480881 - in /maven/maven-1/plugins/trunk/jdiff: plugin.jelly project.xml xdocs/changes.xml

Author: ltheussl
Date: Thu Nov 30 01:20:37 2006
New Revision: 480881

URL: http://svn.apache.org/viewvc?view=rev&rev=480881
Log:
PR: MPJDIFF-10
Add xml-apis dependency for jdk 1.4 compliance.

Modified:
    maven/maven-1/plugins/trunk/jdiff/plugin.jelly
    maven/maven-1/plugins/trunk/jdiff/project.xml
    maven/maven-1/plugins/trunk/jdiff/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/jdiff/plugin.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jdiff/plugin.jelly?view=diff&rev=480881&r1=480880&r2=480881
==============================================================================
--- maven/maven-1/plugins/trunk/jdiff/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/jdiff/plugin.jelly Thu Nov 30 01:20:37 2006
@@ -42,7 +42,7 @@
         pluginName="maven-jdiff-plugin"
         link="jdiff/changes"
         target="_blank"
-        description="Report on the api difference report between versions."/>
+        description="Report on the api difference between versions."/>
     </j:if>
   </goal>
   
@@ -133,7 +133,7 @@
     </j:choose>
     
     <ant:property name="baseuri" value="${plugin.dir}"/>
-    <ant:property name="jdiff.cp" value="${plugin.getDependencyPath('jdiff')};${plugin.getDependencyPath('xerces:xercesImpl')}" />
+    <ant:property name="jdiff.cp" value="${plugin.getDependencyPath('jdiff')};${plugin.getDependencyPath('xerces:xercesImpl')};${plugin.getDependencyPath('xml-apis:xml-apis')}" />
 
     <ant:path id="maven.cp">
       <ant:pathelement location="${plugin.getDependencyPath('jdiff')}" />

Modified: maven/maven-1/plugins/trunk/jdiff/project.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jdiff/project.xml?view=diff&rev=480881&r1=480880&r2=480881
==============================================================================
--- maven/maven-1/plugins/trunk/jdiff/project.xml (original)
+++ maven/maven-1/plugins/trunk/jdiff/project.xml Thu Nov 30 01:20:37 2006
@@ -85,5 +85,14 @@
         <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>
+        <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/trunk/jdiff/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jdiff/xdocs/changes.xml?view=diff&rev=480881&r1=480880&r2=480881
==============================================================================
--- maven/maven-1/plugins/trunk/jdiff/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/jdiff/xdocs/changes.xml Thu Nov 30 01:20:37 2006
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="1.5.1-SNAPSHOT" date="In SVN">
+      <action dev="ltheussl" type="fix" issue="MPJDIFF-10">Jdiff doclet fails with jdk 1.4.</action>
       <action dev="aheritier" type="fix">Use relative links to the javadoc.</action>
       <action dev="aheritier" type="update">It requires at least maven-plugin-plugin v1.7.</action>
     </release>