kaz         02/05/30 11:08:15

  Modified:    xdocs/ref build-file.xml project-descriptor.xml
               xdocs/start integrate.xml
  Log:
  Updated docs to reflect that maven:dist now uses a 'id' again instead of
  a cvs tag.  The 'id' is defined in the distribution element of the POM.
  
  Revision  Changes    Path
  1.17      +9 -7      jakarta-turbine-maven/xdocs/ref/build-file.xml
  
  Index: build-file.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/xdocs/ref/build-file.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build-file.xml    27 May 2002 21:25:27 -0000      1.16
  +++ build-file.xml    30 May 2002 18:08:15 -0000      1.17
  @@ -151,7 +151,7 @@
           <tr>
             <td><a href="#maven:dist">maven:dist</a></td>
             <td>Generates source and binary distributions from a specified
  -            CVS tag.</td>
  +            distribution identifier.</td>
           </tr>
           <tr>
             <td><a href="#maven:dist-build">maven:dist-build</a></td>
  @@ -353,11 +353,13 @@
         <subsection name="maven:dist">
           <p>
             The <code>maven:dist</code> target generates both a binary and
  -          source distributions of the project from the specified CVS
  -          tag.  Typically, the CVS tag is specified via the
  -          command-line: <code>ant -Dmaven.tag=CVS_TAG_NAME maven:dist</code>
  -          where <code>CVS_TAG_NAME</code> is a CVS tag identifying the
  -          distribution to build.  The <code>cvsRoot</code> and
  +          source distributions of the project from the specified
  +          distribution ID.  Typically, the distid is specified via the
  +          command-line: <code>ant -Dmaven.distid=DIST_ID
  +          maven:dist</code> where <code>DIST_ID</code> is one of the
  +          distribution IDs specified by the <code>id</code> element of
  +          the <code>distribution</code> element of the project
  +          descriptor.  The <code>cvsRoot</code> and
             <code>cvsModule</code> elements of the project descriptor
             provide the information required to check out the specific
             sources (see the <a href="project-descriptor.html#project">Project
  @@ -386,7 +388,7 @@
             The <code>maven:dist-build</code> target generates both a
             binary and source distributions of the project from the
             current project directory (unlike <code>maven:dist</code>
  -          which builds a distribution from a specific CVS tag).
  +          which builds a distribution from a specific distribution ID).
           </p>
           <p>
             The binary distribution includes the jar files as well
  
  
  
  1.8       +13 -2     jakarta-turbine-maven/xdocs/ref/project-descriptor.xml
  
  Index: project-descriptor.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/xdocs/ref/project-descriptor.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project-descriptor.xml    30 May 2002 13:46:49 -0000      1.7
  +++ project-descriptor.xml    30 May 2002 18:08:15 -0000      1.8
  @@ -189,8 +189,10 @@
           <tr>
               <td><a href="#distributions">distributions</a></td>
               <td>
  -                Optional. Contain information on previous distributions of the
  -                project. This information is not currently used by Maven.
  +                Optional. Contains information on previous distributions of the
  +                project. This information is used when invoking the <a
  +                href="build-file.html#maven:dist"><code>maven:dist</code></a> 
  +                target.
               </td>
           </tr>
           <tr>
  @@ -255,6 +257,15 @@
           <subsection name="distribution">
               <table>
                   <tr><th>Element</th><th>Description</th></tr>
  +                <tr>
  +                    <td>id</td>
  +                    <td>
  +                      A unique identifier for a distribution.  This ID
  +                      is used to specify the distribution that the <a
  +                      href="build-file.html#maven:dist"><code>maven:dist</code></a>
  +                      builds.
  +                    </td>
  +                </tr>
                   <tr>
                       <td>version</td>
                       <td>The external version number under which this release
  
  
  
  1.14      +13 -0     jakarta-turbine-maven/xdocs/start/integrate.xml
  
  Index: integrate.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/xdocs/start/integrate.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- integrate.xml     30 May 2002 13:46:49 -0000      1.13
  +++ integrate.xml     30 May 2002 18:08:15 -0000      1.14
  @@ -92,6 +92,19 @@
     <cvsRoot>:pserver:[EMAIL PROTECTED]:/home/cvspublic</cvsRoot>
     <cvsModule>jakarta-turbine-maven</cvsModule>
   
  +  <distributions>
  +    <distribution>
  +      <id>b3</id>
  +      <version>1.0-b3</version>
  +      <tag>MAVEN_1_0_B3</tag>
  +    </distribution>
  +    <distribution>
  +      <id>b4</id>
  +      <version>1.0-b4</version>
  +      <tag>HEAD</tag>
  +    </distribution>
  +  </distributions>
  +
     <mailingLists>
       <mailingList>
         <name>Turbine User List</name>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to