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.3.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
|
|
26
|
<!-- ******* DATABASES DRIVER ******* -->
|
27
|
<!--
|
28
|
IMPORTANT:
|
29
|
Any driver dependency listed here must be excluded from the
|
30
|
cdmlib-remote depedency in cdmlib-remote-webapp
|
31
|
-->
|
32
|
|
33
|
<!-- For testing only, currently not in use -->
|
34
|
<dependency>
|
35
|
<groupId>org.hsqldb</groupId>
|
36
|
<artifactId>hsqldb</artifactId>
|
37
|
<version>2.3.3</version>
|
38
|
<scope>compile</scope>
|
39
|
</dependency>
|
40
|
<!-- SQL Server and Sybase -->
|
41
|
|
42
|
<dependency>
|
43
|
<groupId>mysql</groupId>
|
44
|
<artifactId>mysql-connector-java</artifactId>
|
45
|
<version>5.1.38</version>
|
46
|
</dependency>
|
47
|
<dependency>
|
48
|
<groupId>org.postgresql</groupId>
|
49
|
<artifactId>postgresql</artifactId>
|
50
|
<version>9.4-1206-jdbc4</version>
|
51
|
</dependency>
|
52
|
<dependency>
|
53
|
<groupId>com.h2database</groupId>
|
54
|
<artifactId>h2</artifactId>
|
55
|
<version>1.4.190</version>
|
56
|
</dependency>
|
57
|
<!--for sqlserver2008 and sqlserver2005 and probably higher-->
|
58
|
<dependency>
|
59
|
<groupId>com.microsoft.sqlserver</groupId>
|
60
|
<artifactId>jdbc4</artifactId>
|
61
|
<version>2.0</version>
|
62
|
</dependency>
|
63
|
|
64
|
<!-- SQL Server and Sybase -->
|
65
|
<dependency>
|
66
|
<groupId>net.sourceforge.jtds</groupId>
|
67
|
<artifactId>jtds</artifactId>
|
68
|
<version>1.3.1</version>
|
69
|
</dependency>
|
70
|
|
71
|
<!-- Oracle -->
|
72
|
<!-- <dependency> -->
|
73
|
<!-- <groupId>oracle</groupId> -->
|
74
|
<!-- <artifactId>ojdbc14</artifactId> -->
|
75
|
<!-- <version>10.2.0.4.0</version> -->
|
76
|
<!-- </dependency> -->
|
77
|
<!-- <dependency>
|
78
|
<groupId>ojdbc</groupId>
|
79
|
<artifactId>ojdbc</artifactId>
|
80
|
<version>14</version>
|
81
|
</dependency> -->
|
82
|
|
83
|
</dependencies>
|
84
|
|
85
|
</project>
|