You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2003/01/26 23:34:03 UTC

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

jvanzyl     2003/01/26 14:34:03

  Modified:    src/plugins-build/dist plugin.jelly
  Log:
  o Applying patch by RBD.
  
  when you run dist:build, the binary build has the whole contents of the
  base directory copied over where the docs should be. this patch fixes this
  problem.
  
  - robert
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-turbine-maven/src/plugins-build/dist/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/dist/plugin.jelly,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- plugin.jelly	25 Jan 2003 18:19:54 -0000	1.2
  +++ plugin.jelly	26 Jan 2003 22:34:03 -0000	1.3
  @@ -56,7 +56,7 @@
       <j:set var="docsDest"
         value="${pom.getPluginContext('maven-xdoc-plugin').getVariable('maven.docs.dest')}"/>
       <copy todir="${maven.dist.bin.assembly.dir}/docs">
  -      <fileset dir="${maven.docs.dest}">
  +      <fileset dir="${docsDest}">
           <include name="**"/>
         </fileset>
       </copy>