Index: xdocs/repository-upload.xml =================================================================== RCS file: /home/cvspublic/maven/xdocs/repository-upload.xml,v retrieving revision 1.14 diff -u -w -r1.14 repository-upload.xml --- xdocs/repository-upload.xml 28 Jun 2004 15:09:19 -0000 1.14 +++ xdocs/repository-upload.xml 2 Aug 2004 23:08:48 -0000 @@ -67,9 +67,9 @@ In that case the project.xml should at least contain the following elements:
- $MAVEN_REPO/project id/artifact type/project-version.extension
+ $MAVEN_REPO/groupId/artifact type/artifactId-version.extension
For instance, a Maven JAR artifact will be stored in a repository Index: xdocs/reference/project-descriptor.xml =================================================================== RCS file: /home/cvspublic/maven/xdocs/reference/project-descriptor.xml,v retrieving revision 1.35 diff -u -w -r1.35 project-descriptor.xml --- xdocs/reference/project-descriptor.xml 23 Jul 2004 04:40:08 -0000 1.35 +++ xdocs/reference/project-descriptor.xml 2 Aug 2004 23:26:11 -0000 @@ -51,7 +51,8 @@ <project> <extend/> <pomVersion/> - <id/> + <artifactId/> + <id/> deprecated <name/> <groupId/> <currentVersion/> @@ -131,7 +132,7 @@ </licenses> <dependencies> <dependency> - <id/> + <id/> deprecated <groupId/> <artifactId/> <version/> @@ -157,7 +158,7 @@ </sourceModification> </sourceModifications> <unitTestSourceDirectory/> - <integrationUnitTestSourceDirectory/> + <integrationUnitTestSourceDirectory/> deprecated <aspectSourceDirectory/> <unitTest> <includes> @@ -231,14 +232,25 @@
+ Note: The use of the id element is + deprecated. Please use artifactId + instead. +
+
Every separate project has its own directory in the repository where artifacts for that project can be stored. Each project has a unique - project id and directory where a project stores its artifacts is named - after the project id. + project groupId and directory where a project stores its artifacts is named + after the project groupId.
Index: xdocs/reference/developers/developer-guide.xml
===================================================================
RCS file: /home/cvspublic/maven/xdocs/reference/developers/developer-guide.xml,v
retrieving revision 1.7
diff -u -w -r1.7 developer-guide.xml
--- xdocs/reference/developers/developer-guide.xml 22 Jul 2004 16:28:27 -0000 1.7
+++ xdocs/reference/developers/developer-guide.xml 2 Aug 2004 23:11:57 -0000
@@ -77,7 +77,7 @@
<project>
<pomVersion>3</pomVersion>
- <id>maven-hello-plugin</id>
+ <artifactId>maven-hello-plugin</artifactId>
<name>Maven hello world plugin</name>
<currentVersion>1.0.0</currentVersion>
<organization>
@@ -100,7 +100,8 @@
<dependencies>
<!--
<dependency>
- <id>commons-logging</id>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
-->
Index: xdocs/start/integrate.xml
===================================================================
RCS file: /home/cvspublic/maven/xdocs/start/integrate.xml,v
retrieving revision 1.26
diff -u -w -r1.26 integrate.xml
--- xdocs/start/integrate.xml 22 Jul 2004 16:28:26 -0000 1.26
+++ xdocs/start/integrate.xml 2 Aug 2004 23:12:31 -0000
@@ -69,7 +69,7 @@