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:33:58 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/aptdoc plugin.jelly

kaz         2003/01/17 09:33:58

  Modified:    src/plugins-build/aptdoc plugin.jelly
  Log:
  Modified the APT plugin to use the new inter-plugin method of
  referencing properties.
  
  Revision  Changes    Path
  1.5       +4 -1      jakarta-turbine-maven/src/plugins-build/aptdoc/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/aptdoc/plugin.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.jelly	29 Nov 2002 23:30:48 -0000	1.4
  +++ plugin.jelly	17 Jan 2003 17:33:58 -0000	1.5
  @@ -42,9 +42,12 @@
   
         <!-- Convert each source document -->
   
  +      <j:set var="outDirectory"
  +        value="${pom.getPluginContext('maven-xdoc-plugin').getVariable('maven.gen.docs')}"/>
  +
         <j:forEach var="inFile" items="${inFiles.iterator()}">
   
  -        <j:set var="outFile" value="${maven.gen.docs}/${mapper.mapFileName( inFile.name ).0}"/>
  +        <j:set var="outFile" value="${outDirectory}/${mapper.mapFileName( inFile.name ).0}"/>
          
           <aptdoc:convert
               input="${inFile}"