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.14.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.2</version> -->
|
24
|
</dependency>
|
25
|
|
26
|
<dependency>
|
27
|
<groupId>com.mchange</groupId>
|
28
|
<artifactId>mchange-commons-java</artifactId>
|
29
|
<!-- mchange-commons-java needs to match the version as defined in the c3p0/pom.xml -->
|
30
|
<version>0.2.11</version>
|
31
|
</dependency>
|
32
|
|
33
|
|
34
|
|
35
|
<!-- ******* DATABASES DRIVER ******* -->
|
36
|
<!--
|
37
|
IMPORTANT:
|
38
|
Any driver dependency listed here must be excluded from the
|
39
|
cdmlib-remote depedency in cdmlib-remote-webapp
|
40
|
-->
|
41
|
|
42
|
<!-- For using cdmlib-db in testing only, currently not in use -->
|
43
|
<dependency>
|
44
|
<groupId>org.hsqldb</groupId>
|
45
|
<artifactId>hsqldb</artifactId>
|
46
|
<!-- <version>2.3.3</version> -->
|
47
|
<scope>compile</scope>
|
48
|
</dependency>
|
49
|
|
50
|
<!-- Database drivers -->
|
51
|
|
52
|
<dependency>
|
53
|
<groupId>mysql</groupId>
|
54
|
<artifactId>mysql-connector-java</artifactId>
|
55
|
<!-- <version>8.0.15</version> -->
|
56
|
</dependency>
|
57
|
<dependency>
|
58
|
<groupId>org.mariadb.jdbc</groupId>
|
59
|
<artifactId>mariadb-java-client</artifactId>
|
60
|
<!-- <version>2.4.0</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>
|