cdmlib / cdmlib-db / pom.xml @ 4672679d
History | View | Annotate | Download (2.85 KB)
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.3.0</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>5.1.38</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 |
<!--for sqlserver2008 and sqlserver2005 and probably higher-->
|
68 |
<dependency>
|
69 |
<groupId>com.microsoft.sqlserver</groupId> |
70 |
<artifactId>jdbc4</artifactId> |
71 |
<!-- <version>2.0</version> -->
|
72 |
</dependency>
|
73 |
|
74 |
<!-- SQL Server and Sybase -->
|
75 |
<dependency>
|
76 |
<groupId>net.sourceforge.jtds</groupId> |
77 |
<artifactId>jtds</artifactId> |
78 |
<!-- <version>1.3.1</version> -->
|
79 |
</dependency>
|
80 |
|
81 |
<!-- Oracle -->
|
82 |
<!-- <dependency> -->
|
83 |
<!-- <groupId>oracle</groupId> -->
|
84 |
<!-- <artifactId>ojdbc14</artifactId> -->
|
85 |
<!-- <version>10.2.0.4.0</version> -->
|
86 |
<!-- </dependency> -->
|
87 |
<!-- <dependency>
|
88 |
<groupId>ojdbc</groupId>
|
89 |
<artifactId>ojdbc</artifactId>
|
90 |
<version>14</version>
|
91 |
</dependency> -->
|
92 |
|
93 |
</dependencies>
|
94 |
|
95 |
</project>
|