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:19:31 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/webserver plugin.jelly apache-2.x.jelly

dion        2002/11/29 17:19:31

  Modified:    src/plugins-build/war plugin.jelly
               src/plugins-build/vdoclet plugin.jelly
               src/plugins-build/webserver plugin.jelly apache-2.x.jelly
  Log:
  Fix missing goal descriptions
  
  Revision  Changes    Path
  1.17      +2 -1      jakarta-turbine-maven/src/plugins-build/war/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/war/plugin.jelly,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- plugin.jelly	14 Nov 2002 17:46:25 -0000	1.16
  +++ plugin.jelly	30 Nov 2002 01:19:31 -0000	1.17
  @@ -10,7 +10,8 @@
     <!--==================================================================-->
     <!-- Initializations                                                  -->
     <!--==================================================================-->    
  -  <goal name="war:init">
  +  <goal name="war:init"
  +    description="Initialize the file system and attain any necessary goals">
   
       <available property="webSourcesPresent" type="dir"
         file="${maven.war.src}"/>
  
  
  
  1.2       +2 -1      jakarta-turbine-maven/src/plugins-build/vdoclet/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/vdoclet/plugin.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.jelly	26 Nov 2002 06:49:20 -0000	1.1
  +++ plugin.jelly	30 Nov 2002 01:19:31 -0000	1.2
  @@ -7,7 +7,8 @@
     <!-- V D O C L E T  I N I T                                             -->
     <!-- ================================================================== -->
     
  -  <goal name="vdoclet-init">
  +  <goal name="vdoclet-init"
  +        description="Initialize vdoclet tag library for later use">
       <define:taglib uri="vdoclet">
         <define:jellybean
           name="vdocletBean"
  
  
  
  1.4       +6 -3      jakarta-turbine-maven/src/plugins-build/webserver/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/webserver/plugin.jelly,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- plugin.jelly	18 Aug 2002 03:25:07 -0000	1.3
  +++ plugin.jelly	30 Nov 2002 01:19:31 -0000	1.4
  @@ -14,7 +14,8 @@
     <!-- B E G I N  C O R E  P R O C E S S I N G                          -->
     <!--==================================================================-->
     <!-- tell the user what Maven thinks about their webserver instance -->
  -  <goal name="webserver:init">
  +  <goal name="webserver:init" 
  +    description="Initialize resources needed for the plugin">
   
       <condition property="maven.webserver.started">
         <http url="${maven.webserver.url}" />
  @@ -84,7 +85,8 @@
     <!-- specific when using pre and post goals and sometimes there may   -->
     <!-- be custom implementations of reinstall                           -->
     <goal name="webserver:reinstall"
  -    prereqs="webserver:init, webserver:install-${maven.webserver.fullname}" >
  +    prereqs="webserver:init, webserver:install-${maven.webserver.fullname}"
  +    description="Reinstall a web server" >
       <!-- <attainGoal name="webserver:install-${maven.webserver.fullname}" /> -->
     </goal>
   
  @@ -136,7 +138,8 @@
     <!-- the purpose of this target is to allow the user to be very       -->
     <!-- specific when using pre and post goals                           -->
     <goal name="webserver:restart"
  -    prereqs="webserver:init,webserver:restart-${maven.webserver.fullname}">
  +    prereqs="webserver:init,webserver:restart-${maven.webserver.fullname}"
  +    description="Restart the web server instance">
       <!-- <attainGoal name="start-${maven.webserver.fullname}" />-->
     </goal>
   
  
  
  
  1.5       +10 -5     jakarta-turbine-maven/src/plugins-build/webserver/apache-2.x.jelly
  
  Index: apache-2.x.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/webserver/apache-2.x.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- apache-2.x.jelly	22 Sep 2002 07:54:37 -0000	1.4
  +++ apache-2.x.jelly	30 Nov 2002 01:19:31 -0000	1.5
  @@ -2,7 +2,8 @@
   
   <project xmlns:j="jelly:core" xmlns:log="jelly:log">
   
  -  <goal name="webserver:apache-2.x-reqs">
  +  <goal name="webserver:apache-2.x-reqs"
  +    description="Intialize resources for apache processing">
   
       <!-- Check if user has http.conf in a conf dir -->
       <available file="${maven.webserver.conf.dir}/conf/httpd.conf"
  @@ -18,7 +19,9 @@
   
     </goal>
   
  -  <goal name="webserver:install-apache-2.x" prereqs="webserver:apache-2.x-reqs">
  +  <goal name="webserver:install-apache-2.x"
  +    prereqs="webserver:apache-2.x-reqs"
  +    description="Install user files into apache installation">
   
       <!-- Create common directories and copy configuration files -->
       <mkdir dir="${maven.webserver.dir}/logs"/>
  @@ -33,19 +36,21 @@
   
     </goal>
   
  -  <goal name="webserver:start-apache-2.x">
  +  <goal name="webserver:start-apache-2.x"
  +    description="Start Apache">
       <log:warn>
         Not implemented yet!
       </log:warn>
     </goal>
   
  -  <goal name="webserver:restart-apache-2.x">
  +  <goal name="webserver:restart-apache-2.x"
  +    description="Restart Apache">
       <log:warn>
         Not implemented yet!
       </log:warn>
     </goal>
   
  -  <goal name="webserver:stop-apache-2.x">
  +  <goal name="webserver:stop-apache-2.x" description="Stop Apache">
       <log:warn>
         Not implemented yet!
       </log:warn>