You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2005/11/25 04:06:18 UTC

svn commit: r348858 - /jakarta/commons/proper/feedparser/trunk/project.xml

Author: dion
Date: Thu Nov 24 19:06:15 2005
New Revision: 348858

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

Modified:
    jakarta/commons/proper/feedparser/trunk/project.xml

Modified: jakarta/commons/proper/feedparser/trunk/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/project.xml?rev=348858&r1=348857&r2=348858&view=diff
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/project.xml (original)
+++ jakarta/commons/proper/feedparser/trunk/project.xml Thu Nov 24 19:06:15 2005
@@ -2,9 +2,8 @@
 <project>
     
     <name>Commons FeedParser</name>
-
-    <id>commons-feedparser</id>
-
+    <groupId>commons-feedparser</groupId>
+    <artifactId>commons-feedparser</artifactId>
     <logo>/images/feedparser-logo-white.png</logo>
 
     <url>http://jakarta.apache.org/commons/feedparser/</url>
@@ -84,15 +83,14 @@
     <dependencies>
         
         <dependency>
-            <id>jdom</id>
-
-            <!-- actually we need b9 here .  Is it available? -->
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
             <version>b9</version>
-
         </dependency>
 
         <dependency>
-            <id>jaxen</id>
+            <groupId>jaxen</groupId>
+            <artifactId>jaxen</artifactId>
             <!-- 
             The filesize of the jaxen-full jar currently in CVS doesn't match
             any in the Maven repo.
@@ -103,33 +101,51 @@
         </dependency>
 
         <dependency>
-            <id>junit</id>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
             <version>3.8.1</version>
+            <properties>
+              <scope>test</scope>
+            </properties>
         </dependency>
         
         <dependency>
-            <id>commons-httpclient</id>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
             <version>3.0-rc1</version>
         </dependency>
         
         <dependency>
-            <id>log4j</id>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
             <version>1.2.6</version>
         </dependency>
 
         <dependency>
-            <id>xmlrpc</id>
+            <groupId>xmlrpc</groupId>
+            <artifactId>xmlrpc</artifactId>
             <version>1.2</version>
         </dependency>
         
         <dependency>
-            <id>saxpath</id>
+            <groupId>saxpath</groupId>
+            <artifactId>saxpath</artifactId>
             <version>1.0-FCS</version>
         </dependency>
         
-        <!-- these two are required by maven -->
-        <dependency><id>xml-apis</id><version>2.0.2</version></dependency>
-        <dependency><id>xerces</id><version>2.0.2</version></dependency>
+        <!-- these two are required by maven. 
+         !   dIon: TODO: Which version?
+         !-->
+        <dependency>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
+            <version>2.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>xerces</groupId>
+            <artifactId>xerces</artifactId>
+            <version>2.0.2</version>
+        </dependency>
         
     </dependencies>
 



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