pom.xml 13 KB

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