Project

General

Profile

Download (2.47 KB) Statistics
| Branch: | Tag: | Revision:
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.29.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
    </dependency>
24
    <dependency>
25
        <groupId>com.mchange</groupId>
26
        <artifactId>mchange-commons-java</artifactId>
27
    </dependency>
28

    
29
    <!-- ******* DATABASES DRIVER ******* -->
30
      <!-- 
31
            IMPORTANT:
32
            Any driver dependency listed here must be excluded from the 
33
            cdmlib-remote depedency in cdmlib-remote-webapp
34
       -->
35

    
36
    <!-- For using cdmlib-db in testing only, currently not in use -->
37
    <dependency>
38
      <groupId>org.hsqldb</groupId>
39
      <artifactId>hsqldb</artifactId>
40
      <scope>compile</scope>
41
    </dependency>
42
    
43
    <!-- Database drivers -->
44

    
45
    <dependency>
46
      <groupId>mysql</groupId>
47
      <artifactId>mysql-connector-java</artifactId>
48
    </dependency>
49
    <dependency>
50
        <groupId>org.mariadb.jdbc</groupId>
51
        <artifactId>mariadb-java-client</artifactId>
52
    </dependency>
53
    <dependency>
54
      <groupId>org.postgresql</groupId>
55
      <artifactId>postgresql</artifactId>
56
    </dependency>
57
    <dependency>
58
      <groupId>com.h2database</groupId>
59
      <artifactId>h2</artifactId>
60
    </dependency>
61
    <!-- SQL Server-->
62
    <dependency>
63
       <groupId>com.microsoft.sqlserver</groupId>
64
       <artifactId>mssql-jdbc</artifactId>
65
    </dependency>
66
    <!-- SQL Server and Sybase -->
67
    <dependency>
68
      <groupId>net.sourceforge.jtds</groupId>
69
      <artifactId>jtds</artifactId>
70
    </dependency>
71
    
72
    <!-- Oracle -->	
73
<!--     <dependency> -->
74
<!--       <groupId>oracle</groupId> -->
75
<!--       <artifactId>ojdbc14</artifactId> -->
76
<!--     </dependency> -->
77
    <!-- <dependency>
78
		<groupId>ojdbc</groupId>
79
		<artifactId>ojdbc</artifactId>
80
	</dependency>   -->
81

    
82
  </dependencies>
83
  
84
</project>
(4-4/4)