pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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-task-plugin</artifactId>
  23. <groupId>org.apache.dolphinscheduler</groupId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <packaging>jar</packaging>
  28. <artifactId>dolphinscheduler-task-api</artifactId>
  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>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-annotation</artifactId>
  38. <version>${mybatis-plus.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-io</groupId>
  42. <artifactId>commons-io</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.guava</groupId>
  46. <artifactId>guava</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-classic</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-api</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.hive</groupId>
  59. <artifactId>hive-jdbc</artifactId>
  60. <scope>provided</scope>
  61. <exclusions>
  62. <exclusion>
  63. <artifactId>slf4j-log4j12</artifactId>
  64. <groupId>org.slf4j</groupId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>org.eclipse.jetty.aggregate</groupId>
  68. <artifactId>jetty-all</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.apache.ant</groupId>
  72. <artifactId>ant</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>io.dropwizard.metrics</groupId>
  76. <artifactId>metrics-json</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>io.dropwizard.metrics</groupId>
  80. <artifactId>metrics-jvm</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.github.joshelser</groupId>
  84. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>io.netty</groupId>
  88. <artifactId>netty-all</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>io.dropwizard.metrics</groupId>
  96. <artifactId>metrics-core</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>javax.servlet</groupId>
  100. <artifactId>servlet-api</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.apache.avro</groupId>
  104. <artifactId>avro</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>org.apache.curator</groupId>
  108. <artifactId>curator-client</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>org.apache.hadoop</groupId>
  112. <artifactId>hadoop-auth</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>org.apache.hadoop</groupId>
  116. <artifactId>hadoop-mapreduce-client-core</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>org.apache.hadoop</groupId>
  120. <artifactId>hadoop-yarn-api</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>org.apache.zookeeper</groupId>
  124. <artifactId>zookeeper</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>org.codehaus.jackson</groupId>
  128. <artifactId>jackson-jaxrs</artifactId>
  129. </exclusion>
  130. <exclusion>
  131. <groupId>org.codehaus.jackson</groupId>
  132. <artifactId>jackson-xc</artifactId>
  133. </exclusion>
  134. <exclusion>
  135. <groupId>com.google.protobuf</groupId>
  136. <artifactId>protobuf-java</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <groupId>org.json</groupId>
  140. <artifactId>json</artifactId>
  141. </exclusion>
  142. <exclusion>
  143. <artifactId>log4j-slf4j-impl</artifactId>
  144. <groupId>org.apache.logging.log4j</groupId>
  145. </exclusion>
  146. <exclusion>
  147. <artifactId>javax.servlet</artifactId>
  148. <groupId>org.eclipse.jetty.orbit</groupId>
  149. </exclusion>
  150. <exclusion>
  151. <artifactId>servlet-api-2.5</artifactId>
  152. <groupId>org.mortbay.jetty</groupId>
  153. </exclusion>
  154. <exclusion>
  155. <artifactId>jasper-runtime</artifactId>
  156. <groupId>tomcat</groupId>
  157. </exclusion>
  158. <exclusion>
  159. <artifactId>slider-core</artifactId>
  160. <groupId>org.apache.slider</groupId>
  161. </exclusion>
  162. <exclusion>
  163. <artifactId>hbase-server</artifactId>
  164. <groupId>org.apache.hbase</groupId>
  165. </exclusion>
  166. <exclusion>
  167. <artifactId>jersey-client</artifactId>
  168. <groupId>com.sun.jersey</groupId>
  169. </exclusion>
  170. <exclusion>
  171. <artifactId>jersey-core</artifactId>
  172. <groupId>com.sun.jersey</groupId>
  173. </exclusion>
  174. <exclusion>
  175. <artifactId>jersey-json</artifactId>
  176. <groupId>com.sun.jersey</groupId>
  177. </exclusion>
  178. <exclusion>
  179. <artifactId>jersey-server</artifactId>
  180. <groupId>com.sun.jersey</groupId>
  181. </exclusion>
  182. <exclusion>
  183. <artifactId>jersey-guice</artifactId>
  184. <groupId>com.sun.jersey.contribs</groupId>
  185. </exclusion>
  186. <exclusion>
  187. <artifactId>hbase-common</artifactId>
  188. <groupId>org.apache.hbase</groupId>
  189. </exclusion>
  190. <exclusion>
  191. <artifactId>hbase-hadoop2-compat</artifactId>
  192. <groupId>org.apache.hbase</groupId>
  193. </exclusion>
  194. <exclusion>
  195. <artifactId>hbase-client</artifactId>
  196. <groupId>org.apache.hbase</groupId>
  197. </exclusion>
  198. <exclusion>
  199. <artifactId>hbase-hadoop-compat</artifactId>
  200. <groupId>org.apache.hbase</groupId>
  201. </exclusion>
  202. <exclusion>
  203. <artifactId>tephra-hbase-compat-1.0</artifactId>
  204. <groupId>co.cask.tephra</groupId>
  205. </exclusion>
  206. <exclusion>
  207. <artifactId>jaxb-api</artifactId>
  208. <groupId>javax.xml.bind</groupId>
  209. </exclusion>
  210. <exclusion>
  211. <artifactId>hive-llap-client</artifactId>
  212. <groupId>org.apache.hive</groupId>
  213. </exclusion>
  214. <exclusion>
  215. <artifactId>hive-llap-common</artifactId>
  216. <groupId>org.apache.hive</groupId>
  217. </exclusion>
  218. <exclusion>
  219. <artifactId>hive-llap-server</artifactId>
  220. <groupId>org.apache.hive</groupId>
  221. </exclusion>
  222. <exclusion>
  223. <artifactId>tephra-core</artifactId>
  224. <groupId>co.cask.tephra</groupId>
  225. </exclusion>
  226. <exclusion>
  227. <artifactId>ant</artifactId>
  228. <groupId>ant</groupId>
  229. </exclusion>
  230. <exclusion>
  231. <artifactId>stringtemplate</artifactId>
  232. <groupId>org.antlr</groupId>
  233. </exclusion>
  234. <exclusion>
  235. <artifactId>antlr-runtime</artifactId>
  236. <groupId>org.antlr</groupId>
  237. </exclusion>
  238. <exclusion>
  239. <artifactId>hive-shims</artifactId>
  240. <groupId>org.apache.hive</groupId>
  241. </exclusion>
  242. <exclusion>
  243. <artifactId>jsp-api</artifactId>
  244. <groupId>javax.servlet</groupId>
  245. </exclusion>
  246. <exclusion>
  247. <artifactId>log4j-api</artifactId>
  248. <groupId>org.apache.logging.log4j</groupId>
  249. </exclusion>
  250. <exclusion>
  251. <artifactId>log4j-core</artifactId>
  252. <groupId>org.apache.logging.log4j</groupId>
  253. </exclusion>
  254. <exclusion>
  255. <artifactId>log4j-web</artifactId>
  256. <groupId>org.apache.logging.log4j</groupId>
  257. </exclusion>
  258. <exclusion>
  259. <artifactId>jasper-compiler</artifactId>
  260. <groupId>tomcat</groupId>
  261. </exclusion>
  262. <exclusion>
  263. <artifactId>commons-lang</artifactId>
  264. <groupId>commons-lang</groupId>
  265. </exclusion>
  266. </exclusions>
  267. </dependency>
  268. <dependency>
  269. <groupId>io.fabric8</groupId>
  270. <artifactId>kubernetes-client</artifactId>
  271. <scope>provided</scope>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.commons</groupId>
  275. <artifactId>commons-collections4</artifactId>
  276. </dependency>
  277. </dependencies>
  278. </project>