86193d291b6a8357743a25fb62533f8c54a8eb71
[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>5.27.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 <build>
15 <plugins>
16 </plugins>
17 </build>
18 <dependencies>
19
20 <dependency>
21 <groupId>com.mchange</groupId>
22 <artifactId>c3p0</artifactId>
23 <!-- <version>0.9.5.5</version> -->
24 </dependency>
25 <dependency>
26 <groupId>com.mchange</groupId>
27 <artifactId>mchange-commons-java</artifactId>
28 </dependency>
29
30 <!-- ******* DATABASES DRIVER ******* -->
31 <!--
32 IMPORTANT:
33 Any driver dependency listed here must be excluded from the
34 cdmlib-remote depedency in cdmlib-remote-webapp
35 -->
36
37 <!-- For using cdmlib-db in testing only, currently not in use -->
38 <dependency>
39 <groupId>org.hsqldb</groupId>
40 <artifactId>hsqldb</artifactId>
41 <!-- <version>2.3.3</version> -->
42 <scope>compile</scope>
43 </dependency>
44
45 <!-- Database drivers -->
46
47 <dependency>
48 <groupId>mysql</groupId>
49 <artifactId>mysql-connector-java</artifactId>
50 <!-- <version>8.0.20</version> -->
51 </dependency>
52 <dependency>
53 <groupId>org.mariadb.jdbc</groupId>
54 <artifactId>mariadb-java-client</artifactId>
55 <!-- <version>2.4.0</version> -->
56 </dependency>
57 <dependency>
58 <groupId>org.postgresql</groupId>
59 <artifactId>postgresql</artifactId>
60 <!-- <version>9.4-1206-jdbc4</version> -->
61 </dependency>
62 <dependency>
63 <groupId>com.h2database</groupId>
64 <artifactId>h2</artifactId>
65 <!-- <version>1.4.190</version> -->
66 </dependency>
67 <!-- SQL Server-->
68 <dependency>
69 <groupId>com.microsoft.sqlserver</groupId>
70 <artifactId>mssql-jdbc</artifactId>
71 <!-- <version>8.4.1.jre8</version> -->
72 </dependency>
73 <!-- SQL Server and Sybase -->
74 <dependency>
75 <groupId>net.sourceforge.jtds</groupId>
76 <artifactId>jtds</artifactId>
77 <!-- <version>1.3.1</version> -->
78 </dependency>
79
80 <!-- Oracle -->
81 <!-- <dependency> -->
82 <!-- <groupId>oracle</groupId> -->
83 <!-- <artifactId>ojdbc14</artifactId> -->
84 <!-- <version>10.2.0.4.0</version> -->
85 <!-- </dependency> -->
86 <!-- <dependency>
87 <groupId>ojdbc</groupId>
88 <artifactId>ojdbc</artifactId>
89 <version>14</version>
90 </dependency> -->
91
92 </dependencies>
93
94 </project>