Author: dion
Date: Mon Nov 21 20:47:52 2005
New Revision: 348080

URL: http://svn.apache.org/viewcvs?rev=348080&view=rev
Log:
Use groupId/artifactId consistently instead of simply id

Modified:
    jakarta/commons/proper/attributes/trunk/compiler/project.xml
    jakarta/commons/proper/attributes/trunk/plugin/project.xml
    jakarta/commons/proper/attributes/trunk/project.xml
    jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml
    jakarta/commons/proper/attributes/trunk/site/project.xml
    jakarta/commons/proper/attributes/trunk/unittest/project.xml

Modified: jakarta/commons/proper/attributes/trunk/compiler/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/compiler/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/compiler/project.xml (original)
+++ jakarta/commons/proper/attributes/trunk/compiler/project.xml Mon Nov 21 
20:47:52 2005
@@ -44,13 +44,15 @@
         
         <!--
         <dependency>
-            <id>xdoclet+xjavadoc</id>
+            <groupId>xdoclet</groupId>
+            <artifactId>xdoclet-xjavadoc</artifactId>
             <version>1.0</version>
         </dependency>
         -->        
 
         <dependency>
-            <id>qdox</id>
+            <groupId>qdox</groupId>
+            <artifactId>qdox</artifactId>
             <version>1.5</version>
         </dependency>
         

Modified: jakarta/commons/proper/attributes/trunk/plugin/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/plugin/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/plugin/project.xml (original)
+++ jakarta/commons/proper/attributes/trunk/plugin/project.xml Mon Nov 21 
20:47:52 2005
@@ -19,7 +19,7 @@
 <project>
     <extend>${basedir}/../project.xml</extend>
     <pomVersion>3</pomVersion>
-    <id>commons-attributes-plugin</id>
+    <artifactId>commons-attributes-plugin</artifactId>
     <name>Commons Attributes Maven Plugin</name>
     
     <description>Commons Attributes Plugin for Maven</description>
@@ -47,7 +47,8 @@
         </dependency>
         
         <dependency>
-            <id>qdox</id>
+            <groupId>qdox</groupId>
+            <artifactId>qdox</artifactId>
             <version>1.5</version>
         </dependency>
     </dependencies>

Modified: jakarta/commons/proper/attributes/trunk/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/project.xml (original)
+++ jakarta/commons/proper/attributes/trunk/project.xml Mon Nov 21 20:47:52 2005
@@ -19,7 +19,8 @@
 <project>
     <extend>../commons-build/project.xml</extend>
     <name>Attributes</name>
-    <id>commons-attributes</id>
+    <groupId>commons-attributes</groupId>
+    <artifactId>commons-attributes</artifactId>
     
     <logo>/images/attributes-logo-white.png</logo>
     

Modified: 
jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml 
(original)
+++ jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml Mon 
Nov 21 20:47:52 2005
@@ -18,7 +18,7 @@
 -->
 <project>
     <groupId>commons-attributes</groupId>
-    <id>commons-attributes-mavendemo</id>
+    <artifactId>commons-attributes-mavendemo</artifactId>
     <name>Jakarta Commons Attributes - Maven Demo</name>
     
     <shortDescription>A demo of Commons Attributes for Maven 
users.</shortDescription>

Modified: jakarta/commons/proper/attributes/trunk/site/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/site/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/project.xml (original)
+++ jakarta/commons/proper/attributes/trunk/site/project.xml Mon Nov 21 
20:47:52 2005
@@ -23,23 +23,27 @@
     <dependencies>
                
         <dependency>
-            <id>ant</id>
+            <groupId>ant</groupId>
+            <artifactId>ant</artifactId>
             <version>1.5</version>
         </dependency>
         <dependency>
-            <id>qdox</id>
+            <groupId>qdox</groupId>
+            <artifactId>qdox</artifactId>
             <version>1.1</version>
         </dependency>
         
         <!-- pre JDK 1.4 dependencies -->
         
         <dependency>
-            <id>xml-apis</id>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
             <version>1.0.b2</version>
             <url>http://xml.apache.org/xerces2-j/</url>
         </dependency>
         <dependency>
-            <id>xerces</id>
+            <groupId>xerces</groupId>
+            <artifactId>xerces</artifactId>
             <version>2.2.1</version>
             <url>http://xml.apache.org/xerces2-j/</url>
         </dependency>

Modified: jakarta/commons/proper/attributes/trunk/unittest/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/attributes/trunk/unittest/project.xml?rev=348080&r1=348079&r2=348080&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/unittest/project.xml (original)
+++ jakarta/commons/proper/attributes/trunk/unittest/project.xml Mon Nov 21 
20:47:52 2005
@@ -19,7 +19,7 @@
 <project>
     <extend>${basedir}/../project.xml</extend>
     <groupId>commons-attributes</groupId>
-    <id>commons-attributes-unittest</id>
+    <artifactId>commons-attributes-unittest</artifactId>
     <name>Jakarta Commons Attribute Compiler Unit Tests</name>
     <package>org.apache.commons.attributes</package>
     
@@ -43,12 +43,14 @@
         
         <!--
         <dependency>
-            <id>xdoclet+xjavadoc</id>
+            <groupId>xdoclet</groupId>
+            <artifactId>xdoclet-xjavadoc</artifactId>
             <version>1.0</version>
         </dependency>
         
         <dependency>
-            <id>commons-collections</id>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
             <version>2.1</version>
         </dependency>
         -->



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

Reply via email to