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/12/13 01:06:43 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/eclipse/xdocs goals.xml

dion        2002/12/12 16:06:43

  Modified:    src/plugins-build/eclipse/xdocs goals.xml
  Log:
  Changed goals to new format
  
  Revision  Changes    Path
  1.4       +48 -55    jakarta-turbine-maven/src/plugins-build/eclipse/xdocs/goals.xml
  
  Index: goals.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/eclipse/xdocs/goals.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- goals.xml	3 Oct 2002 07:35:41 -0000	1.3
  +++ goals.xml	13 Dec 2002 00:06:43 -0000	1.4
  @@ -7,23 +7,18 @@
     </properties>
   
     <body>
  -    <section name="Goals">
  -      <table>
  -      	<tr><th>Goal</th><th>Description</th></tr>
  -      	
  -		<a name="eclipse" />
  -      	<tr>
  -      	  <td>eclipse</td>
  -      	  <td>
  -      	    The default goal. This goal simply executes the 
  -      	    <a href="#eclipse:generate-project">eclipse:generate-project</a> goal
  -      	  </td>
  -      	</tr>
  -      	
  -      	<a name="eclipse:generate-project" />
  -      	<tr>
  -          <td>eclipse:generate-project</td>
  -          <td>
  +    <goals>
  +      <goal>
  +        <name>eclipse</name>
  +        <description>
  +            The default goal. This goal simply executes the 
  +            <a href="#eclipse:generate-project">eclipse:generate-project</a> goal
  +        </description>
  +      </goal>
  +        
  +      <goal>
  +        <name>eclipse:generate-project</name>
  +          <description>
               Generates a <code>.project</code> file for eclipse describing
               the project and 'marking' it as a java project
               <br />
  @@ -38,46 +33,44 @@
                   <code>target\eclipse\classes</code>
                 </li>
               </ol>
  -          </td>
  -      	</tr>
  -      	
  -      	<a name="eclipse:external-tools" />
  -      	<tr>
  -      	  <td>eclipse:external-tools</td>
  -      	  <td>
  -      	    <p>
  -      	      Generates an external tool entry for each default goal available to
  -      	      a Maven project into a file named <code>externaltools.xml</code>
  -      	    </p>
  -      	    <p>
  -      	      If the <a href="properties.html">${maven.eclipse.workspace}</a>
  -      	      property is set, the file is copied to the correct location within
  -      	      that workspace
  -      	    </p>
  -      	    <p>
  -      	      If the <a href="properties.html">${maven.eclipse.workspace}</a>
  -      	      is <strong>not</strong> set, the file is created in the current
  -      	      directory, and should be manually copied to
  -      	      <source>
  +          </description>
  +        </goal>
  +        
  +        <goal>
  +          <name>eclipse:external-tools</name>
  +          <description>
  +            <p>
  +              Generates an external tool entry for each default goal available to
  +              a Maven project into a file named <code>externaltools.xml</code>
  +            </p>
  +            <p>
  +              If the <a href="properties.html">${maven.eclipse.workspace}</a>
  +              property is set, the file is copied to the correct location within
  +              that workspace
  +            </p>
  +            <p>
  +              If the <a href="properties.html">${maven.eclipse.workspace}</a>
  +              is <strong>not</strong> set, the file is created in the current
  +              directory, and should be manually copied to
  +              <source>
   ${eclipse workspace}/.metadata/.plugins/org.eclipse.ui.externaltools/externaltools.xml
                 </source>
  -      	    </p>
  -      	  </td>
  -      	</tr>
  +            </p>
  +          </description>
  +        </goal>
   
  -      	<a name="eclipse:add-maven-repo" />
  -      	<tr>
  -      	  <td>eclipse:add-maven-repo</td>
  -      	  <td>
  -      	    Ensures that the classpath variable <code>MAVEN_REPO</code>
  -      	    exists in the Eclipse environment.
  -      	    <br />
  -      	    The <a href="properties.html">${maven.eclipse.workspace}</a>
  -      	    property <strong>must</strong> be set for this to succeed, and
  -      	    Eclipse must not be running.
  -      	  </td>
  -      	</tr>
  -      </table>
  -    </section>
  +        <a name="eclipse:add-maven-repo" />
  +        <goal>
  +          <name>eclipse:add-maven-repo</name>
  +          <description>
  +            Ensures that the classpath variable <code>MAVEN_REPO</code>
  +            exists in the Eclipse environment.
  +            <br />
  +            The <a href="properties.html">${maven.eclipse.workspace}</a>
  +            property <strong>must</strong> be set for this to succeed, and
  +            Eclipse must not be running.
  +          </description>
  +        </goal>
  +    </goals>
     </body>
   </document>