pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler-datasource-plugin</artifactId>
  24. <version>3.2.2-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-datasource-hive</artifactId>
  27. <packaging>jar</packaging>
  28. <name>${project.artifactId}</name>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-spi</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.dolphinscheduler</groupId>
  37. <artifactId>dolphinscheduler-datasource-api</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.dolphinscheduler</groupId>
  42. <artifactId>dolphinscheduler-task-api</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.hbase.thirdparty</groupId>
  47. <artifactId>hbase-noop-htrace</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.hadoop</groupId>
  51. <artifactId>hadoop-client</artifactId>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-log4j12</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>servlet-api</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.codehaus.jackson</groupId>
  63. <artifactId>jackson-jaxrs</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>org.codehaus.jackson</groupId>
  67. <artifactId>jackson-xc</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>org.fusesource.leveldbjni</groupId>
  71. <artifactId>leveldbjni-all</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>org.apache.zookeeper</groupId>
  75. <artifactId>zookeeper</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.apache.hadoop</groupId>
  79. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>com.sun.jersey</groupId>
  83. <artifactId>jersey-client</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>com.sun.jersey</groupId>
  87. <artifactId>jersey-core</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>javax.xml.bind</groupId>
  91. <artifactId>jaxb-api</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>log4j</groupId>
  95. <artifactId>log4j</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.hive</groupId>
  101. <artifactId>hive-jdbc</artifactId>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>org.slf4j</groupId>
  105. <artifactId>slf4j-log4j12</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>org.eclipse.jetty.aggregate</groupId>
  109. <artifactId>jetty-all</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>org.apache.ant</groupId>
  113. <artifactId>ant</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>io.dropwizard.metrics</groupId>
  117. <artifactId>metrics-json</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>io.dropwizard.metrics</groupId>
  121. <artifactId>metrics-jvm</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>com.github.joshelser</groupId>
  125. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>io.netty</groupId>
  129. <artifactId>netty-all</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>com.google.code.gson</groupId>
  133. <artifactId>gson</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>io.dropwizard.metrics</groupId>
  137. <artifactId>metrics-core</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>javax.servlet</groupId>
  141. <artifactId>servlet-api</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>org.apache.avro</groupId>
  145. <artifactId>avro</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>org.apache.curator</groupId>
  149. <artifactId>curator-client</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>org.apache.hadoop</groupId>
  153. <artifactId>hadoop-auth</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>org.apache.hadoop</groupId>
  157. <artifactId>hadoop-mapreduce-client-core</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>org.apache.hadoop</groupId>
  161. <artifactId>hadoop-yarn-api</artifactId>
  162. </exclusion>
  163. <exclusion>
  164. <groupId>org.apache.zookeeper</groupId>
  165. <artifactId>zookeeper</artifactId>
  166. </exclusion>
  167. <exclusion>
  168. <groupId>org.codehaus.jackson</groupId>
  169. <artifactId>jackson-jaxrs</artifactId>
  170. </exclusion>
  171. <exclusion>
  172. <groupId>org.codehaus.jackson</groupId>
  173. <artifactId>jackson-xc</artifactId>
  174. </exclusion>
  175. <exclusion>
  176. <groupId>com.google.protobuf</groupId>
  177. <artifactId>protobuf-java</artifactId>
  178. </exclusion>
  179. <exclusion>
  180. <groupId>org.json</groupId>
  181. <artifactId>json</artifactId>
  182. </exclusion>
  183. <exclusion>
  184. <groupId>org.apache.logging.log4j</groupId>
  185. <artifactId>log4j-slf4j-impl</artifactId>
  186. </exclusion>
  187. <exclusion>
  188. <groupId>org.eclipse.jetty.orbit</groupId>
  189. <artifactId>javax.servlet</artifactId>
  190. </exclusion>
  191. <exclusion>
  192. <groupId>org.mortbay.jetty</groupId>
  193. <artifactId>servlet-api-2.5</artifactId>
  194. </exclusion>
  195. <exclusion>
  196. <groupId>tomcat</groupId>
  197. <artifactId>jasper-runtime</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <groupId>org.apache.slider</groupId>
  201. <artifactId>slider-core</artifactId>
  202. </exclusion>
  203. <exclusion>
  204. <groupId>org.apache.hbase</groupId>
  205. <artifactId>hbase-server</artifactId>
  206. </exclusion>
  207. <exclusion>
  208. <groupId>com.sun.jersey</groupId>
  209. <artifactId>jersey-client</artifactId>
  210. </exclusion>
  211. <exclusion>
  212. <groupId>com.sun.jersey</groupId>
  213. <artifactId>jersey-core</artifactId>
  214. </exclusion>
  215. <exclusion>
  216. <groupId>com.sun.jersey</groupId>
  217. <artifactId>jersey-json</artifactId>
  218. </exclusion>
  219. <exclusion>
  220. <groupId>com.sun.jersey</groupId>
  221. <artifactId>jersey-server</artifactId>
  222. </exclusion>
  223. <exclusion>
  224. <groupId>com.sun.jersey.contribs</groupId>
  225. <artifactId>jersey-guice</artifactId>
  226. </exclusion>
  227. <exclusion>
  228. <groupId>org.apache.hbase</groupId>
  229. <artifactId>hbase-common</artifactId>
  230. </exclusion>
  231. <exclusion>
  232. <groupId>org.apache.hbase</groupId>
  233. <artifactId>hbase-hadoop2-compat</artifactId>
  234. </exclusion>
  235. <exclusion>
  236. <groupId>org.apache.hbase</groupId>
  237. <artifactId>hbase-client</artifactId>
  238. </exclusion>
  239. <exclusion>
  240. <groupId>org.apache.hbase</groupId>
  241. <artifactId>hbase-hadoop-compat</artifactId>
  242. </exclusion>
  243. <exclusion>
  244. <groupId>co.cask.tephra</groupId>
  245. <artifactId>tephra-hbase-compat-1.0</artifactId>
  246. </exclusion>
  247. <exclusion>
  248. <groupId>javax.xml.bind</groupId>
  249. <artifactId>jaxb-api</artifactId>
  250. </exclusion>
  251. <exclusion>
  252. <groupId>org.apache.hive</groupId>
  253. <artifactId>hive-llap-client</artifactId>
  254. </exclusion>
  255. <exclusion>
  256. <groupId>org.apache.hive</groupId>
  257. <artifactId>hive-llap-common</artifactId>
  258. </exclusion>
  259. <exclusion>
  260. <groupId>org.apache.hive</groupId>
  261. <artifactId>hive-llap-server</artifactId>
  262. </exclusion>
  263. <exclusion>
  264. <groupId>co.cask.tephra</groupId>
  265. <artifactId>tephra-core</artifactId>
  266. </exclusion>
  267. <exclusion>
  268. <groupId>ant</groupId>
  269. <artifactId>ant</artifactId>
  270. </exclusion>
  271. <exclusion>
  272. <groupId>org.antlr</groupId>
  273. <artifactId>stringtemplate</artifactId>
  274. </exclusion>
  275. <exclusion>
  276. <groupId>org.antlr</groupId>
  277. <artifactId>antlr-runtime</artifactId>
  278. </exclusion>
  279. <exclusion>
  280. <groupId>org.apache.hive</groupId>
  281. <artifactId>hive-shims</artifactId>
  282. </exclusion>
  283. <exclusion>
  284. <groupId>javax.servlet</groupId>
  285. <artifactId>jsp-api</artifactId>
  286. </exclusion>
  287. <exclusion>
  288. <groupId>org.apache.logging.log4j</groupId>
  289. <artifactId>log4j-api</artifactId>
  290. </exclusion>
  291. <exclusion>
  292. <groupId>org.apache.logging.log4j</groupId>
  293. <artifactId>log4j-core</artifactId>
  294. </exclusion>
  295. <exclusion>
  296. <groupId>org.apache.logging.log4j</groupId>
  297. <artifactId>log4j-web</artifactId>
  298. </exclusion>
  299. <exclusion>
  300. <groupId>tomcat</groupId>
  301. <artifactId>jasper-compiler</artifactId>
  302. </exclusion>
  303. <exclusion>
  304. <groupId>com.fasterxml.jackson.core</groupId>
  305. <artifactId>jackson-annotations</artifactId>
  306. </exclusion>
  307. <exclusion>
  308. <groupId>com.fasterxml.jackson.core</groupId>
  309. <artifactId>jackson-databind</artifactId>
  310. </exclusion>
  311. </exclusions>
  312. </dependency>
  313. </dependencies>
  314. </project>