Revision a991c122
Added by Andreas Kohlbecker almost 8 years ago
cdmlib-remote-webapp/pom.xml | ||
---|---|---|
66 | 66 |
and http://stackoverflow.com/questions/6981564/why-must-the-jdbc-driver-be-put-in-tomcat-home-lib-folder |
67 | 67 |
--> |
68 | 68 |
<exclusion> |
69 |
<artifactId>postgresql</artifactId>
|
|
70 |
<groupId>postgresql</groupId>
|
|
69 |
<groupId>net.sourceforge.jtds</groupId>
|
|
70 |
<artifactId>jtds</artifactId>
|
|
71 | 71 |
</exclusion> |
72 | 72 |
<exclusion> |
73 |
<artifactId>mysql-connector-java</artifactId> |
|
74 | 73 |
<groupId>mysql</groupId> |
74 |
<artifactId>mysql-connector-java</artifactId> |
|
75 | 75 |
</exclusion> |
76 | 76 |
<exclusion> |
77 |
<artifactId>c3p0</artifactId> |
|
78 |
<groupId>com.mchange</groupId> |
|
77 |
<groupId>org.postgresql</groupId> |
|
78 |
<artifactId>postgresql</artifactId> |
|
79 |
</exclusion> |
|
80 |
<exclusion> |
|
81 |
<groupId>org.hsqldb</groupId> |
|
82 |
<artifactId>hsqldb</artifactId> |
|
83 |
</exclusion> |
|
84 |
<exclusion> |
|
85 |
<groupId>com.microsoft.sqlserver</groupId> |
|
86 |
<artifactId>jdbc4</artifactId> |
|
79 | 87 |
</exclusion> |
80 | 88 |
<exclusion> |
81 | 89 |
<groupId>oracle</groupId> |
82 | 90 |
<artifactId>ojdbc14</artifactId> |
83 | 91 |
</exclusion> |
84 | 92 |
<exclusion> |
85 |
<groupId>net.sourceforge.jtds</groupId> |
|
86 |
<artifactId>jtds</artifactId> |
|
93 |
<groupId>com.h2database</groupId> |
|
94 |
<artifactId>h2</artifactId> |
|
95 |
</exclusion> |
|
96 |
<exclusion> |
|
97 |
<groupId>com.mchange</groupId> |
|
98 |
<artifactId>c3p0</artifactId> |
|
87 | 99 |
</exclusion> |
88 | 100 |
</exclusions> |
89 | 101 |
</dependency> |
... | ... | |
94 | 106 |
<dependency> |
95 | 107 |
<groupId>eu.etaxonomy</groupId> |
96 | 108 |
<artifactId>cdmlib-test</artifactId> |
109 |
<scope>test</scope> |
|
97 | 110 |
</dependency> |
98 | 111 |
<dependency> |
99 | 112 |
<!-- TODO this is also offered by cdmlib-remote, can it be removed? |
pom.xml | ||
---|---|---|
1379 | 1379 |
<version>3.1.0</version> |
1380 | 1380 |
</dependency> |
1381 | 1381 |
<!-- ******* DATABASES DRIVER ******* --> |
1382 |
<!-- |
|
1383 |
IMPORTANT: |
|
1384 |
Any driver dependency listed here must be excluded from the |
|
1385 |
cdmlib-remote depedency in cdmlib-remote-webapp |
|
1386 |
--> |
|
1382 | 1387 |
<dependency> |
1383 | 1388 |
<!-- SQL Server and Sybase --> |
1384 | 1389 |
<groupId>net.sourceforge.jtds</groupId> |
... | ... | |
1406 | 1411 |
<artifactId>jdbc4</artifactId> |
1407 | 1412 |
<version>2.0</version> |
1408 | 1413 |
</dependency> |
1409 |
|
|
1410 | 1414 |
<dependency> |
1411 | 1415 |
<groupId>oracle</groupId> |
1412 | 1416 |
<artifactId>ojdbc14</artifactId> |
Also available in: Unified diff
excluding database drivers from cdmlib-remote-webapp.war