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 2003/01/01 10:22:42 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/plugin/templates goals.jelly goals-empty.jelly properties.jelly properties-empty.jelly

dion        2003/01/01 01:22:42

  Modified:    src/plugins-build/plugin/templates goals.jelly
                        goals-empty.jelly properties.jelly
                        properties-empty.jelly
  Added:       src/plugins-build/plugin/xdocs properties.xml goals.xml
                        navigation.xml
  Log:
  Changed from ${plugin} to ${pom.name} in the templates and generated docs for this plugin
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-maven/src/plugins-build/plugin/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <document>
    <properties>
      <title>Maven Plugin Plugin Properties</title>
      <author email="dion@apache.org">dIon Gillard</author>
    </properties>
    <body>
      <section name="Maven Plugin Plugin Settings">
        <table>
          <tr>
            <th>Property</th>
            <th>Optional?</th>
            <th>Description</th>
          </tr>
          <tr>
            <td>maven.docs.src</td>
            <td>Yes</td>
            <td>
              <p>Default value is
                <code>${basedir}/xdocs</code>.</p>
            </td>
          </tr>
        </table>
      </section>
    </body>
  </document>
  
  
  1.1                  jakarta-turbine-maven/src/plugins-build/plugin/xdocs/goals.xml
  
  Index: goals.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <document>
    <properties>
      <title>Maven Plugin Plugin Goals</title>
      <author email="dion@apache.org">dIon Gillard</author>
    </properties>
    <body>
      <goals>
        <goal>
          <name>plugin</name>
          <description>Build and install a plugin</description>
        </goal>
        <goal>
          <name>plugin:deploy</name>
          <description>Install an unpacked version of the plugin</description>
        </goal>
        <goal>
          <name>plugin:generate-docs</name>
          <description>Generate navigation, goals and properties docs</description>
        </goal>
        <goal>
          <name>plugin:generate-goals</name>
          <description>Generate goals.xml for the plugin</description>
        </goal>
        <goal>
          <name>plugin:generate-navigation</name>
          <description>Generate navigation.xml for the plugin</description>
        </goal>
        <goal>
          <name>plugin:generate-properties</name>
          <description>Generate properties.xml for the plugin</description>
        </goal>
        <goal>
          <name>plugin:install</name>
          <description>Install the plugin in Maven's plugins dir</description>
        </goal>
      </goals>
    </body>
  </document>
  
  
  1.1                  jakarta-turbine-maven/src/plugins-build/plugin/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project name="Maven Plugin Plugin">
    <title>Maven Plugin Plugin</title>
    <body>
      <links>
        <item href="http://jakarta.apache.org/turbine/maven/" name="Maven">
        </item>
      </links>
      <menu name="Overview">
        <item href="/goals.html" name="Goals">
        </item>
        <item href="/properties.html" name="Properties">
        </item>
      </menu>
    </body>
  </project>
  
  
  1.2       +1 -1      jakarta-turbine-maven/src/plugins-build/plugin/templates/goals.jelly
  
  Index: goals.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/plugin/templates/goals.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- goals.jelly	1 Jan 2003 09:05:29 -0000	1.1
  +++ goals.jelly	1 Jan 2003 09:22:42 -0000	1.2
  @@ -6,7 +6,7 @@
   <document>
   
     <properties>
  -    <title>Maven ${plugin} Plug-in Goals</title>
  +    <title>${pom.name} Goals</title>
       <author email="dion@apache.org">dIon Gillard</author>
     </properties>
     <body>
  
  
  
  1.2       +2 -2      jakarta-turbine-maven/src/plugins-build/plugin/templates/goals-empty.jelly
  
  Index: goals-empty.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/plugin/templates/goals-empty.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- goals-empty.jelly	1 Jan 2003 09:05:29 -0000	1.1
  +++ goals-empty.jelly	1 Jan 2003 09:22:42 -0000	1.2
  @@ -4,11 +4,11 @@
   <document>
   
     <properties>
  -    <title>Maven ${plugin} Plug-in Goals</title>
  +    <title>${pom.name} Goals</title>
       <author email="dion@apache.org">dIon Gillard</author>
     </properties>
     <body>
  -    <section name="${plugin} Goals">
  +    <section name="${pom.name} Goals">
         <p>This plugin defines no goals</p>
       </section>
     </body>
  
  
  
  1.2       +2 -2      jakarta-turbine-maven/src/plugins-build/plugin/templates/properties.jelly
  
  Index: properties.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/plugin/templates/properties.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- properties.jelly	1 Jan 2003 09:05:29 -0000	1.1
  +++ properties.jelly	1 Jan 2003 09:22:42 -0000	1.2
  @@ -4,12 +4,12 @@
   <document>
   
     <properties>
  -    <title>${plugin} Properties</title>
  +    <title>${pom.name} Properties</title>
       <author email="dion@apache.org">dIon Gillard</author>
     </properties>
   
     <body>
  -    <section name="${plugin} Settings">
  +    <section name="${pom.name} Settings">
         <table>
           <tr><th>Property</th><th>Optional?</th><th>Description</th></tr>
           <j:forEach var="var" items="${vars}">
  
  
  
  1.2       +2 -2      jakarta-turbine-maven/src/plugins-build/plugin/templates/properties-empty.jelly
  
  Index: properties-empty.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/plugin/templates/properties-empty.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- properties-empty.jelly	1 Jan 2003 09:05:29 -0000	1.1
  +++ properties-empty.jelly	1 Jan 2003 09:22:42 -0000	1.2
  @@ -4,12 +4,12 @@
   <document>
   
     <properties>
  -    <title>${plugin} Properties</title>
  +    <title>${pom.name} Properties</title>
       <author email="dion@apache.org">dIon Gillard</author>
     </properties>
   
     <body>
  -    <section name="${plugin} Settings">
  +    <section name="${pom.name} Settings">
         <p>There are no settings to customize this plugin</p>
       </section>
     </body>