pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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</artifactId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-service</artifactId>
  27. <name>dolphinscheduler-service</name>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-bom</artifactId>
  33. <version>${project.version}</version>
  34. <type>pom</type>
  35. <scope>import</scope>
  36. </dependency>
  37. </dependencies>
  38. </dependencyManagement>
  39. <dependencies>
  40. <!-- dolphinscheduler -->
  41. <dependency>
  42. <groupId>org.apache.dolphinscheduler</groupId>
  43. <artifactId>dolphinscheduler-remote</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.dolphinscheduler</groupId>
  47. <artifactId>dolphinscheduler-dao</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.dolphinscheduler</groupId>
  51. <artifactId>dolphinscheduler-spi</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.dolphinscheduler</groupId>
  55. <artifactId>dolphinscheduler-registry-api</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.dolphinscheduler</groupId>
  59. <artifactId>dolphinscheduler-task-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.cronutils</groupId>
  63. <artifactId>cron-utils</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.micrometer</groupId>
  67. <artifactId>micrometer-core</artifactId>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.hadoop</groupId>
  72. <artifactId>hadoop-common</artifactId>
  73. <scope>provided</scope>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-log4j12</artifactId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>jdk.tools</groupId>
  81. <artifactId>jdk.tools</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>servlet-api</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>javax.servlet</groupId>
  89. <artifactId>servlet-api</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>log4j</groupId>
  93. <artifactId>log4j</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>org.apache.curator</groupId>
  97. <artifactId>curator-client</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>commons-configuration</groupId>
  101. <artifactId>commons-configuration</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>io.grpc</groupId>
  105. <artifactId>grpc-protobuf</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>io.netty</groupId>
  109. <artifactId>netty</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>org.codehaus.jackson</groupId>
  113. <artifactId>jackson-core-asl</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>org.codehaus.jackson</groupId>
  117. <artifactId>jackson-mapper-asl</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>com.google.protobuf</groupId>
  121. <artifactId>jackson-mapper-asl</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>com.google.code.gson</groupId>
  125. <artifactId>gson</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>xmlenc</groupId>
  129. <artifactId>xmlenc</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>commons-net</groupId>
  133. <artifactId>commons-net</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>org.apache.avro</groupId>
  137. <artifactId>avro</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.zookeeper</groupId>
  141. <artifactId>zookeeper</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>javax.servlet.jsp</groupId>
  145. <artifactId>jsp-api</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>com.sun.jersey</groupId>
  149. <artifactId>jersey-json</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>com.sun.jersey</groupId>
  153. <artifactId>jersey-server</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>com.sun.jersey</groupId>
  157. <artifactId>jersey-core</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>org.mortbay.jetty</groupId>
  161. <artifactId>jetty</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.hbase.thirdparty</groupId>
  167. <artifactId>hbase-noop-htrace</artifactId>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.hadoop</groupId>
  171. <artifactId>hadoop-client</artifactId>
  172. <scope>provided</scope>
  173. <exclusions>
  174. <exclusion>
  175. <groupId>org.slf4j</groupId>
  176. <artifactId>slf4j-log4j12</artifactId>
  177. </exclusion>
  178. <exclusion>
  179. <groupId>javax.servlet</groupId>
  180. <artifactId>servlet-api</artifactId>
  181. </exclusion>
  182. <exclusion>
  183. <groupId>org.codehaus.jackson</groupId>
  184. <artifactId>jackson-jaxrs</artifactId>
  185. </exclusion>
  186. <exclusion>
  187. <groupId>org.codehaus.jackson</groupId>
  188. <artifactId>jackson-xc</artifactId>
  189. </exclusion>
  190. <exclusion>
  191. <groupId>org.fusesource.leveldbjni</groupId>
  192. <artifactId>leveldbjni-all</artifactId>
  193. </exclusion>
  194. <exclusion>
  195. <groupId>org.apache.zookeeper</groupId>
  196. <artifactId>zookeeper</artifactId>
  197. </exclusion>
  198. <exclusion>
  199. <groupId>org.apache.hadoop</groupId>
  200. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  201. </exclusion>
  202. <exclusion>
  203. <groupId>com.sun.jersey</groupId>
  204. <artifactId>jersey-client</artifactId>
  205. </exclusion>
  206. <exclusion>
  207. <groupId>com.sun.jersey</groupId>
  208. <artifactId>jersey-core</artifactId>
  209. </exclusion>
  210. <exclusion>
  211. <groupId>javax.xml.bind</groupId>
  212. <artifactId>jaxb-api</artifactId>
  213. </exclusion>
  214. <exclusion>
  215. <groupId>log4j</groupId>
  216. <artifactId>log4j</artifactId>
  217. </exclusion>
  218. </exclusions>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.apache.hadoop</groupId>
  222. <artifactId>hadoop-hdfs</artifactId>
  223. <scope>provided</scope>
  224. <exclusions>
  225. <exclusion>
  226. <groupId>javax.servlet</groupId>
  227. <artifactId>servlet-api</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>io.netty</groupId>
  231. <artifactId>netty</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>com.google.protobuf</groupId>
  235. <artifactId>protobuf-java</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <groupId>xmlenc</groupId>
  239. <artifactId>xmlenc</artifactId>
  240. </exclusion>
  241. <exclusion>
  242. <groupId>io.netty</groupId>
  243. <artifactId>netty-all</artifactId>
  244. </exclusion>
  245. <exclusion>
  246. <groupId>org.fusesource.leveldbjni</groupId>
  247. <artifactId>leveldbjni-all</artifactId>
  248. </exclusion>
  249. <exclusion>
  250. <groupId>com.sun.jersey</groupId>
  251. <artifactId>jersey-core</artifactId>
  252. </exclusion>
  253. <exclusion>
  254. <groupId>com.sun.jersey</groupId>
  255. <artifactId>jersey-server</artifactId>
  256. </exclusion>
  257. <exclusion>
  258. <groupId>log4j</groupId>
  259. <artifactId>log4j</artifactId>
  260. </exclusion>
  261. </exclusions>
  262. </dependency>
  263. <dependency>
  264. <groupId>com.amazonaws</groupId>
  265. <artifactId>aws-java-sdk-s3</artifactId>
  266. <scope>provided</scope>
  267. </dependency>
  268. </dependencies>
  269. </project>