pom.xml 12 KB

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