You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/08/18 00:03:59 UTC

svn commit: r432408 - in /maven/maven-1/core/trunk/xdocs: reference/glossary.xml reference/project-descriptor.xml start/ten-minute-test.xml

Author: ltheussl
Date: Thu Aug 17 15:03:58 2006
New Revision: 432408

URL: http://svn.apache.org/viewvc?rev=432408&view=rev
Log:
Documentation updates about deprecated id element.

Modified:
    maven/maven-1/core/trunk/xdocs/reference/glossary.xml
    maven/maven-1/core/trunk/xdocs/reference/project-descriptor.xml
    maven/maven-1/core/trunk/xdocs/start/ten-minute-test.xml

Modified: maven/maven-1/core/trunk/xdocs/reference/glossary.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/core/trunk/xdocs/reference/glossary.xml?rev=432408&r1=432407&r2=432408&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/glossary.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/glossary.xml Thu Aug 17 15:03:58 2006
@@ -110,7 +110,7 @@
             A repository is a structured storage of project artifacts. Those
             artifacts are organized under the following structure:
             <br/>
-            <code>$MAVEN_REPO/group id/artifact type/project-version.extension</code>
+            <code>$MAVEN_REPO/groupId/artifact type/project-version.extension</code>
             <br/>
             For instance, a Maven JAR artifact will be stored in a repository
             under <code>/repository/maven/jars/maven-1.0-beta-8.jar</code>.

Modified: maven/maven-1/core/trunk/xdocs/reference/project-descriptor.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/core/trunk/xdocs/reference/project-descriptor.xml?rev=432408&r1=432407&r2=432408&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/reference/project-descriptor.xml (original)
+++ maven/maven-1/core/trunk/xdocs/reference/project-descriptor.xml Thu Aug 17 15:03:58 2006
@@ -206,9 +206,9 @@
               <code>id</code>
             </td>
             <td>
-            The short name of the project.  This value is used when naming 
-            <a href="http://maven.apache.org/maven-1.x/plugins/java/index.html">jars</a> and
-            <a href="http://maven.apache.org/maven-1.x/plugins/dist/index.html">distribution files</a>.
+            The short name of the project.
+            <strong>DEPRECATED</strong>:
+            use <code>&lt;groupId&gt;</code> and <code>&lt;artifactId&gt;</code>.
           </td>
           </tr>
           <tr>

Modified: maven/maven-1/core/trunk/xdocs/start/ten-minute-test.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/core/trunk/xdocs/start/ten-minute-test.xml?rev=432408&r1=432407&r2=432408&view=diff
==============================================================================
--- maven/maven-1/core/trunk/xdocs/start/ten-minute-test.xml (original)
+++ maven/maven-1/core/trunk/xdocs/start/ten-minute-test.xml Thu Aug 17 15:03:58 2006
@@ -168,7 +168,6 @@
         <source><![CDATA[<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <pomVersion>3</pomVersion>
-  <id>sample-echo</id>
   <groupId>sample</groupId>
   <artifactId>sample-echo</artifactId>
   <name>Sample</name>