You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ka...@apache.org on 2003/01/17 18:12:15 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/xdoc/templates dependencies.xml

kaz         2003/01/17 09:12:15

  Modified:    src/plugins-build/xdoc/templates dependencies.xml
  Log:
  Fixed the dependency report so that it utilizes the new artifact stuff.
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-turbine-maven/src/plugins-build/xdoc/templates/dependencies.xml
  
  Index: dependencies.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/xdoc/templates/dependencies.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- dependencies.xml	14 Jul 2002 19:09:35 -0000	1.1
  +++ dependencies.xml	17 Jan 2003 17:12:15 -0000	1.2
  @@ -27,13 +27,13 @@
           <tr>
             <td> 
               #if ($dep.url && $dep.url.length() != 0) 
  -              <a href="$escape.getText($dep.url)">$!dep.id</a> 
  +              <a href="$escape.getText($dep.url)">$!dep.groupId</a> 
               #else 
  -              $!dep.id 
  +              $!dep.groupId 
               #end
             </td>
             <td>$!dep.version</td>
  -          <td>$!dep.jar</td>
  +          <td>$!dep.artifact</td>
           </tr>
           #end
         </table>