updating poms for 4.5.0-SNAPSHOT development
[cdmlib.git] / cdmlib-db / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>eu.etaxonomy</groupId>
5 <artifactId>cdmlib-parent</artifactId>
6 <version>4.5.0-SNAPSHOT</version>
7 <relativePath>../pom.xml</relativePath>
8 </parent>
9
10 <modelVersion>4.0.0</modelVersion>
11 <artifactId>cdmlib-db</artifactId>
12 <name>CDM Database Connectivity</name>
13 <description>EDIT CDM database connectivity. Dependencies for database drivers and other database related libraries</description>
14 <scm>
15 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-db/</connection>
16 <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-db/</developerConnection>
17 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-db/</url>
18 </scm>
19 <build>
20 <plugins>
21 </plugins>
22 </build>
23 <dependencies>
24
25 <dependency>
26 <groupId>com.mchange</groupId>
27 <artifactId>c3p0</artifactId>
28 <!-- <version>0.9.5.2</version> -->
29 </dependency>
30
31 <dependency>
32 <groupId>com.mchange</groupId>
33 <artifactId>mchange-commons-java</artifactId>
34 <!-- mchange-commons-java needs to match the version as defined in the c3p0/pom.xml -->
35 <version>0.2.11</version>
36 </dependency>
37
38
39
40 <!-- ******* DATABASES DRIVER ******* -->
41 <!--
42 IMPORTANT:
43 Any driver dependency listed here must be excluded from the
44 cdmlib-remote depedency in cdmlib-remote-webapp
45 -->
46
47 <!-- For using cdmlib-db in testing only, currently not in use -->
48 <dependency>
49 <groupId>org.hsqldb</groupId>
50 <artifactId>hsqldb</artifactId>
51 <!-- <version>2.3.3</version> -->
52 <scope>compile</scope>
53 </dependency>
54
55 <!-- Database drivers -->
56
57 <dependency>
58 <groupId>mysql</groupId>
59 <artifactId>mysql-connector-java</artifactId>
60 <!-- <version>5.1.38</version> -->
61 </dependency>
62 <dependency>
63 <groupId>org.postgresql</groupId>
64 <artifactId>postgresql</artifactId>
65 <!-- <version>9.4-1206-jdbc4</version> -->
66 </dependency>
67 <dependency>
68 <groupId>com.h2database</groupId>
69 <artifactId>h2</artifactId>
70 <!-- <version>1.4.190</version> -->
71 </dependency>
72 <!--for sqlserver2008 and sqlserver2005 and probably higher-->
73 <dependency>
74 <groupId>com.microsoft.sqlserver</groupId>
75 <artifactId>jdbc4</artifactId>
76 <!-- <version>2.0</version> -->
77 </dependency>
78
79 <!-- SQL Server and Sybase -->
80 <dependency>
81 <groupId>net.sourceforge.jtds</groupId>
82 <artifactId>jtds</artifactId>
83 <!-- <version>1.3.1</version> -->
84 </dependency>
85
86 <!-- Oracle -->
87 <!-- <dependency> -->
88 <!-- <groupId>oracle</groupId> -->
89 <!-- <artifactId>ojdbc14</artifactId> -->
90 <!-- <version>10.2.0.4.0</version> -->
91 <!-- </dependency> -->
92 <!-- <dependency>
93 <groupId>ojdbc</groupId>
94 <artifactId>ojdbc</artifactId>
95 <version>14</version>
96 </dependency> -->
97
98 </dependencies>
99
100 </project>