|
13 | 13 | </properties> |
14 | 14 |
|
15 | 15 | <profiles> |
16 | | - <!-- Oracle JDBC is conditionally installed by install-jars --> |
17 | | - <profile> |
18 | | - <activation> |
19 | | - <file> |
20 | | - <exists>${basedir}/../install-jars/lib/ojdbc/ojdbc8-12.2.0.1.jar</exists> |
21 | | - </file> |
22 | | - </activation> |
23 | | - <dependencies> |
24 | | - <dependency> |
25 | | - <groupId>com.oracle.jdbc</groupId> |
26 | | - <artifactId>ojdbc8</artifactId> |
27 | | - <version>12.2.0.1</version> |
28 | | - </dependency> |
29 | | - </dependencies> |
30 | | - </profile> |
31 | 16 | <!-- Overriding the default release profile to run the pre release script |
32 | 17 | with makes the required modification to .classpath and other manually maintained |
33 | 18 | files --> |
|
156 | 141 | <artifactId>py4j</artifactId> |
157 | 142 | <version>0.10.2.1</version> |
158 | 143 | </dependency> |
159 | | - <!-- JDBC connectors For Oracle, see ORACLE_JDBC_JAR --> |
| 144 | + <!-- JDBC connectors For Oracle, MySQL, Postgres --> |
| 145 | + <dependency> |
| 146 | + <groupId>com.oracle.database.jdbc</groupId> |
| 147 | + <artifactId>ojdbc8</artifactId> |
| 148 | + <version>12.2.0.1</version> |
| 149 | + <exclusions> |
| 150 | + <exclusion> |
| 151 | + <groupId>com.oracle.database.jdbc</groupId> |
| 152 | + <artifactId>ucp</artifactId> |
| 153 | + </exclusion> |
| 154 | + <exclusion> |
| 155 | + <groupId>com.oracle.database.security</groupId> |
| 156 | + <artifactId>oraclepki</artifactId> |
| 157 | + </exclusion> |
| 158 | + <exclusion> |
| 159 | + <groupId>com.oracle.database.security</groupId> |
| 160 | + <artifactId>osdt_cert</artifactId> |
| 161 | + </exclusion> |
| 162 | + <exclusion> |
| 163 | + <groupId>com.oracle.database.security</groupId> |
| 164 | + <artifactId>osdt_core</artifactId> |
| 165 | + </exclusion> |
| 166 | + <exclusion> |
| 167 | + <groupId>com.oracle.database.ha</groupId> |
| 168 | + <artifactId>simplefan</artifactId> |
| 169 | + </exclusion> |
| 170 | + <exclusion> |
| 171 | + <groupId>com.oracle.database.ha</groupId> |
| 172 | + <artifactId>ons</artifactId> |
| 173 | + </exclusion> |
| 174 | + </exclusions> |
| 175 | + </dependency> |
160 | 176 | <dependency> |
161 | 177 | <groupId>com.mysql</groupId> |
162 | 178 | <artifactId>mysql-connector-j</artifactId> |
|
0 commit comments