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/05/18 16:53:46 UTC

cvs commit: maven/xdocs/reference project-descriptor.xml

dion        2003/05/18 07:53:45

  Modified:    xdocs/reference project-descriptor.xml
  Log:
  Top level elements are now all present and in the same order as the xsd file
  
  Revision  Changes    Path
  1.16      +46 -32    maven/xdocs/reference/project-descriptor.xml
  
  Index: project-descriptor.xml
  ===================================================================
  RCS file: /home/cvs/maven/xdocs/reference/project-descriptor.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- project-descriptor.xml	29 Apr 2003 07:56:11 -0000	1.15
  +++ project-descriptor.xml	18 May 2003 14:53:45 -0000	1.16
  @@ -39,11 +39,24 @@
         <table>
           <tr><th>Element</th><th>Description</th></tr>
           <tr>
  -          <td>name</td>
  +          <td>extend</td>
             <td>
  -            The full name of the project.  This value is used when
  -            generating <a href="plugins/javadoc/index.html">JavaDoc</a>
  -            titles.
  +            The location of the parent project, if one exists. Values from the parent project will be
  +            the default for this project if they are left unspecified.
  +            <source><![CDATA[<extend>${basedir}/../project.xml</extend>]]></source>
  +          </td>
  +        </tr>
  +        <tr>
  +          <td>pomVersion</td>
  +          <td>
  +            The current version of the Maven project descriptor.  This
  +            version number enables Maven to automatically update an
  +            out-of-date project descriptor when a new version is
  +            available.  This version number should not be changed after
  +            the descriptor has been created.  Maven will update it
  +            automatically.  Please refer to the
  +            <a href="updating.html">Updating</a> document for more
  +            information.
             </td>
           </tr>
           <tr>
  @@ -55,24 +68,19 @@
             </td>
           </tr>
           <tr>
  -          <td>groupId</td>
  +          <td>name</td>
             <td>
  -            The short name of the project group. This value is used to group
  -            all jars for a project in one directory. For more info look at the
  -            <a href="user-guide.html#Naming%20Conventions">user guide</a>.
  +            The full name of the project.  This value is used when
  +            generating <a href="plugins/javadoc/index.html">JavaDoc</a>
  +            titles.
             </td>
           </tr>
           <tr>
  -          <td>pomVersion</td>
  +          <td>groupId</td>
             <td>
  -            The current version of the Maven project descriptor.  This
  -            version number enables Maven to automatically update an
  -            out-of-date project descriptor when a new version is
  -            available.  This version number should not be changed after
  -            the descriptor has been created.  Maven will update it
  -            automatically.  Please refer to the <a
  -            href="updating.html">Updating</a> document for more
  -            information.
  +            The short name of the project group. This value is used to group
  +            all jars for a project in one directory. For more info look at the
  +            <a href="user-guide.html#Naming%20Conventions">user guide</a>.
             </td>
           </tr>
           <tr>
  @@ -108,18 +116,21 @@
             </td>
           </tr>
           <tr>
  -          <td>gumpRepositoryId</td>
  +          <td>logo</td>
             <td>
  -            Optional. This is the Id of the Gump repository that this project is
  -            part of (assuming it participates in the Gump integration
  -            effort).
  +            The URL to the project's logo image.  This can be an URL relative
  +            to the base directory of the generated web site,
  +            (e.g., <code>/images/project-logo.png</code>) or an absolute URL
  +            (e.g., <code>http://my.corp/project-logo.png</code>).  This is used
  +            when generating the project documentation.
             </td>
           </tr>
           <tr>
  -          <td>shortDescription</td>
  +          <td>gumpRepositoryId</td>
             <td>
  -            A short description of the project.  The short description
  -            should be limited to a single line.
  +            Optional. This is the Id of the Gump repository that this project is
  +            part of (assuming it participates in the Gump integration
  +            effort).
             </td>
           </tr>
           <tr>
  @@ -133,19 +144,16 @@
             </td>
           </tr>
           <tr>
  -          <td>url</td>
  +          <td>shortDescription</td>
             <td>
  -            The URL to the project's homepage.
  +            A short description of the project.  The short description
  +            should be limited to a single line.
             </td>
           </tr>
           <tr>
  -          <td>logo</td>
  +          <td>url</td>
             <td>
  -            The URL to the project's logo image.  This can be an URL relative
  -            to the base directory of the generated web site,
  -            (e.g., <code>/images/project-logo.png</code>) or an absolute URL
  -            (e.g., <code>http://my.corp/project-logo.png</code>).  This is used
  -            when generating the project documentation.
  +            The URL to the project's homepage.
             </td>
           </tr>
           <tr>
  @@ -256,6 +264,12 @@
             <td>
               Describes the reports that should be included as part of the
               Maven-generated site.
  +          </td>
  +        </tr>
  +        <tr>
  +          <td>properties</td>
  +          <td>
  +            Project properties that will be used by various plugins
             </td>
           </tr>
         </table>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org