You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by br...@apache.org on 2005/10/14 15:28:19 UTC

svn commit: r321111 - /jakarta/commons/proper/dbcp/trunk/project.xml

Author: brett
Date: Fri Oct 14 06:28:17 2005
New Revision: 321111

URL: http://svn.apache.org/viewcvs?rev=321111&view=rev
Log:
PR: 16644
Submitted by: Carlos Sanchez
improved dependency information for maven2 users in future releases

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

Modified: jakarta/commons/proper/dbcp/trunk/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/dbcp/trunk/project.xml?rev=321111&r1=321110&r2=321111&view=diff
==============================================================================
--- jakarta/commons/proper/dbcp/trunk/project.xml (original)
+++ jakarta/commons/proper/dbcp/trunk/project.xml Fri Oct 14 06:28:17 2005
@@ -17,7 +17,8 @@
 <project>
   <pomVersion>3</pomVersion>
   
-  <id>commons-dbcp</id>
+  <groupId>commons-dbcp</groupId>
+  <artifactId>commons-dbcp</artifactId>
   <inceptionYear>2001</inceptionYear>
   <currentVersion>1.2.2-dev</currentVersion>
   <name>Commons DBCP</name>
@@ -161,11 +162,13 @@
   
   <dependencies>
     <dependency>
-      <id>commons-collections</id>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
       <version>2.1</version>
     </dependency>
     <dependency>
-      <id>commons-pool</id>
+      <groupId>commons-pool</groupId>
+      <artifactId>commons-pool</artifactId>
       <version>1.2</version>
     </dependency>
 
@@ -175,19 +178,34 @@
          this dependency list so Maven doesn't choke?
     -->
     <dependency>
-      <id>jdbc</id>
+      <groupId>javax.sql</groupId>
+      <artifactId>jdbc-stdext</artifactId>
       <version>2.0</version>
     </dependency>
 
     <dependency>
-      <id>junit</id>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
       <version>3.8.1</version>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
 
     <!-- these two are required by maven -->
-    <dependency><id>xml-apis</id><version>2.0.2</version></dependency><!-- actually dbcp's tests need this too -->
-    <dependency><id>xerces</id><version>2.0.2</version></dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+    </dependency>
+    <!-- actually dbcp's tests need this too -->
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xerces</artifactId>
+      <version>2.0.2</version>
+    </dependency>
     <!-- /these two are required by maven -->
+  
   </dependencies>
 
   <build>



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