Does that mean you are volunteering to fix this handling for RC2? :) http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1123
> -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 17 February 2004 9:53 AM > To: [EMAIL PROTECTED] > Subject: cvs commit: maven/xdocs/reference user-guide.xml > > > jvanzyl 2004/02/16 14:52:32 > > Modified: xdocs/reference Tag: MAVEN-1_0-BRANCH user-guide.xml > Log: > o using the groupId/artifactId references. > > Revision Changes Path > No revision > No revision > 1.63.4.2 +20 -13 maven/xdocs/reference/user-guide.xml > > Index: user-guide.xml > =================================================================== > RCS file: /home/cvs/maven/xdocs/reference/user-guide.xml,v > retrieving revision 1.63.4.1 > retrieving revision 1.63.4.2 > diff -u -r1.63.4.1 -r1.63.4.2 > --- user-guide.xml 31 Dec 2003 03:02:18 -0000 1.63.4.1 > +++ user-guide.xml 16 Feb 2004 22:52:32 -0000 1.63.4.2 > @@ -150,7 +150,8 @@ > <project> > > <pomVersion>3</pomVersion> > - <id>maven</id> > + <groupId>maven</groupId> > + <artifactId>maven</artifactId> > <name>Maven</name> > <currentVersion>1.0-b5-dev</currentVersion> > <organization> > @@ -181,8 +182,9 @@ > <?xml version="1.0" encoding="ISO-8859-1"?> > <project> > <extend>project.xml</extend> > - > - <id>super-extendo</id> > + > + <groupId>super-extendo</groupId> > + <artifactId>super-extendo<artifactId> > <name>Super Extendo</name> > > <build> > @@ -214,9 +216,9 @@ > <source><![CDATA[ > <project> > <pomVersion>3</pomVersion> > - <id>commons-master</id> > + <groupId>commons</groupId> > + <artifactId>commons-master</artifactId> > <name>Commons Master Maven POM</name> > - <groupId>org.apache.commons</groupId> > > <organization> > <name>Apache Software Foundation</name> > @@ -249,7 +251,8 @@ > > <source><![CDATA[ > <project> > - <id>commons-betwixt</id> > + <groupId>commons-betwixt</groupId> > + <artifactId>commons-betwixt</artifactId> > <name>Betwixt</name> > ... > </project> > @@ -1024,7 +1027,8 @@ > <dependencies> > > <dependency> > - <id>commons-jelly</id> > + <groupId>commons-jelly</groupId> > + <artifactId>commons-jelly</groupId> > <version>SNAPSHOT</version> > </dependency> > > @@ -1427,7 +1431,8 @@ > > <source><![CDATA[ > <project> > - <id>foo</id> > + <groupId>foo</groupId> > + <artifactId>foo</artifactId> > ... > </project> > ]]></source> > @@ -1446,7 +1451,8 @@ > > <source><![CDATA[ > <project> > - <id>foo</id> > + <groupId>foo</groupId> > + <artifactId>foo</artifactId> > <name>The Grand Master Foo</name> > ... > </project> > @@ -1459,9 +1465,10 @@ > > <source><![CDATA[ > <project> > - <id>foo</id> > + <groupId>foo</groupId> > + <artifactId>foo</artifactId> > <name>The Grand Master Foo</name> > - <groupId>org.foo.bar</groupId> > + <groupId>bar</groupId> > ... > </project> > ]]></source> > @@ -1494,9 +1501,9 @@ > > <source><![CDATA[ > <project> > - <id>bar</id> > + <groupId>bar</groupId> > + <artifactId>foo</artifactId> > <name>Baradelic Groove Machine</name> > - <groupId>org.bar.foo</groupId> > ... > > <dependencies> > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] >
