You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2002/11/30 02:25:15 UTC

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

dion        2002/11/29 17:25:15

  Modified:    src/plugins-build/word2html plugin.jelly
  Log:
  Fix missing goal descriptions
  
  Revision  Changes    Path
  1.5       +4 -2      jakarta-turbine-maven/src/plugins-build/word2html/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/word2html/plugin.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.jelly	22 Oct 2002 02:38:46 -0000	1.4
  +++ plugin.jelly	30 Nov 2002 01:25:15 -0000	1.5
  @@ -5,14 +5,16 @@
     <j:set var="wordSrcDir" value="${maven.word2html.src.dir}"/>
   
   
  -  <goal name="word2html:prepare-filesystem">
  +  <goal name="word2html:prepare-filesystem"
  +    description="Create directories needed for the plugin">
       <j:if test="${!wordSrcDir.equals('MAVEN_WORD2HTML_SRC_DIR_NOT_SET')}">
         <mkdir dir="${maven.build.dir}/docs/"/>
       </j:if>
     </goal>
   
     <goal name="word2html:generate"
  -        prereqs="word2html:prepare-filesystem">
  +        prereqs="word2html:prepare-filesystem"
  +        description="Generate HTML docs from Word via CScript">
   
       <j:if test="${!wordSrcDir.equals('MAVEN_WORD2HTML_SRC_DIR_NOT_SET')}">
         <echo>scanning: ${wordSrcDir}</echo>