pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  17. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  18. <modelVersion>4.0.0</modelVersion>
  19. <parent>
  20. <groupId>org.apache.seatunnel</groupId>
  21. <artifactId>seatunnel-connectors-v2</artifactId>
  22. <version>${revision}</version>
  23. </parent>
  24. <artifactId>connector-jdbc</artifactId>
  25. <name>SeaTunnel : Connectors V2 : Jdbc</name>
  26. <properties>
  27. <mysql.version>8.0.16</mysql.version>
  28. <postgresql.version>42.4.3</postgresql.version>
  29. <dm-jdbc.version>8.1.2.141</dm-jdbc.version>
  30. <sqlserver.version>9.2.1.jre8</sqlserver.version>
  31. <phoenix.version>5.2.5-HBase-2.x</phoenix.version>
  32. <oracle.version>12.2.0.1</oracle.version>
  33. <sqlite.version>3.39.3.0</sqlite.version>
  34. <db2.version>db2jcc4</db2.version>
  35. <sqlite.version>3.39.3.0</sqlite.version>
  36. <tablestore.version>5.13.9</tablestore.version>
  37. <teradata.version>17.20.00.12</teradata.version>
  38. <redshift.version>2.1.0.9</redshift.version>
  39. <saphana.version>2.14.7</saphana.version>
  40. <snowflake.version>3.13.29</snowflake.version>
  41. <vertica.version>12.0.3-0</vertica.version>
  42. <postgis.jdbc.version>2.5.1</postgis.jdbc.version>
  43. </properties>
  44. <dependencyManagement>
  45. <dependencies>
  46. <dependency>
  47. <groupId>com.aliyun.phoenix</groupId>
  48. <artifactId>ali-phoenix-shaded-thin-client</artifactId>
  49. <version>${phoenix.version}</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>${mysql.version}</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.postgresql</groupId>
  60. <artifactId>postgresql</artifactId>
  61. <version>${postgresql.version}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>net.postgis</groupId>
  66. <artifactId>postgis-jdbc</artifactId>
  67. <version>${postgis.jdbc.version}</version>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.dameng</groupId>
  72. <artifactId>DmJdbcDriver18</artifactId>
  73. <version>${dm-jdbc.version}</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.microsoft.sqlserver</groupId>
  78. <artifactId>mssql-jdbc</artifactId>
  79. <version>${sqlserver.version}</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.oracle.database.jdbc</groupId>
  84. <artifactId>ojdbc8</artifactId>
  85. <version>${oracle.version}</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.xerial</groupId>
  90. <artifactId>sqlite-jdbc</artifactId>
  91. <version>${sqlite.version}</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.ibm.db2.jcc</groupId>
  96. <artifactId>db2jcc</artifactId>
  97. <version>${db2.version}</version>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.aliyun.openservices</groupId>
  102. <artifactId>tablestore-jdbc</artifactId>
  103. <version>${tablestore.version}</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.teradata.jdbc</groupId>
  108. <artifactId>terajdbc4</artifactId>
  109. <version>${teradata.version}</version>
  110. <scope>provided</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.amazon.redshift</groupId>
  114. <artifactId>redshift-jdbc42</artifactId>
  115. <version>${redshift.version}</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <!-- https://mvnrepository.com/artifact/com.sap.cloud.db.jdbc/ngdbc -->
  119. <dependency>
  120. <groupId>com.sap.cloud.db.jdbc</groupId>
  121. <artifactId>ngdbc</artifactId>
  122. <version>${saphana.version}</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>net.snowflake</groupId>
  127. <artifactId>snowflake-jdbc</artifactId>
  128. <version>${snowflake.version}</version>
  129. <scope>provided</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.vertica.jdbc</groupId>
  133. <artifactId>vertica-jdbc</artifactId>
  134. <version>${vertica.version}</version>
  135. <scope>provided</scope>
  136. </dependency>
  137. </dependencies>
  138. </dependencyManagement>
  139. <dependencies>
  140. <dependency>
  141. <groupId>org.apache.seatunnel</groupId>
  142. <artifactId>connector-common</artifactId>
  143. <version>${project.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>mysql</groupId>
  147. <artifactId>mysql-connector-java</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.postgresql</groupId>
  151. <artifactId>postgresql</artifactId>
  152. </dependency>
  153. <dependency>
  154. <groupId>net.postgis</groupId>
  155. <artifactId>postgis-jdbc</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.dameng</groupId>
  159. <artifactId>DmJdbcDriver18</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.aliyun.phoenix</groupId>
  163. <artifactId>ali-phoenix-shaded-thin-client</artifactId>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.microsoft.sqlserver</groupId>
  167. <artifactId>mssql-jdbc</artifactId>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.oracle.database.jdbc</groupId>
  171. <artifactId>ojdbc8</artifactId>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.xerial</groupId>
  175. <artifactId>sqlite-jdbc</artifactId>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.ibm.db2.jcc</groupId>
  179. <artifactId>db2jcc</artifactId>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.aliyun.openservices</groupId>
  183. <artifactId>tablestore-jdbc</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.teradata.jdbc</groupId>
  187. <artifactId>terajdbc4</artifactId>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.amazon.redshift</groupId>
  191. <artifactId>redshift-jdbc42</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.sap.cloud.db.jdbc</groupId>
  195. <artifactId>ngdbc</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>net.snowflake</groupId>
  199. <artifactId>snowflake-jdbc</artifactId>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.vertica.jdbc</groupId>
  203. <artifactId>vertica-jdbc</artifactId>
  204. </dependency>
  205. </dependencies>
  206. </project>