Author: sumedha Date: Thu Jun 5 01:46:08 2008 New Revision: 17976 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=17976
Log: Added data service 3rd party dependencies Modified: branches/wsas/java/2.3/wsas/modules/distribution/pom.xml branches/wsas/java/2.3/wsas/pom.xml Modified: branches/wsas/java/2.3/wsas/modules/distribution/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/wsas/java/2.3/wsas/modules/distribution/pom.xml?rev=17976&r1=17975&r2=17976&view=diff ============================================================================== --- branches/wsas/java/2.3/wsas/modules/distribution/pom.xml (original) +++ branches/wsas/java/2.3/wsas/modules/distribution/pom.xml Thu Jun 5 01:46:08 2008 @@ -941,6 +941,30 @@ </exclusion> </exclusions> </dependency> + + <!-- Data service dependencies --> + <dependency> + <groupId>au.com.bytecode.opencsv</groupId> + <artifactId>opencsv</artifactId> + <version>${opencsv.version}</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>${poi.version}</version> + </dependency> + + <dependency> + <groupId>commons-dbcp</groupId> + <artifactId>commons-dbcp</artifactId> + <version>${dbcp.version}</version> + </dependency> + <dependency> + <groupId>commons-pool</groupId> + <artifactId>commons-pool</artifactId> + <version>${commons.pool.version}</version> + </dependency> + </dependencies> </project> Modified: branches/wsas/java/2.3/wsas/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/wsas/java/2.3/wsas/pom.xml?rev=17976&r1=17975&r2=17976&view=diff ============================================================================== --- branches/wsas/java/2.3/wsas/pom.xml (original) +++ branches/wsas/java/2.3/wsas/pom.xml Thu Jun 5 01:46:08 2008 @@ -807,6 +807,17 @@ <artifactId>httpunit</artifactId> <version>1.6.2-PATCHED</version> </dependency> + <dependency> + <groupId>commons-dbcp</groupId> + <artifactId>commons-dbcp</artifactId> + <version>${dbcp.version}</version> + </dependency> + <dependency> + <groupId>commons-pool</groupId> + <artifactId>commons-pool</artifactId> + <version>${commons.pool.version}</version> + </dependency> + </dependencies> </dependencyManagement> @@ -1997,16 +2008,6 @@ </exclusions> </dependency> - <dependency> - <groupId>au.com.bytecode.opencsv</groupId> - <artifactId>opencsv</artifactId> - <version>${opencsv.version}</version> - </dependency> - <dependency> - <groupId>org.apache.poi</groupId> - <artifactId>poi</artifactId> - <version>${poi.version}</version> - </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> @@ -2230,6 +2231,8 @@ <opencsv.version>1.8</opencsv.version> <poi.version>3.0-FINAL</poi.version> + <dbcp.version>1.2.2</dbcp.version> + <commons.pool.version>1.3</commons.pool.version> <jaxb.api.version>2.0</jaxb.api.version> <jaxbri.version>2.1</jaxbri.version> _______________________________________________ Wsas-java-dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/wsas-java-dev
