pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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-server</artifactId>
  27. <packaging>jar</packaging>
  28. <name>dolphinscheduler-server</name>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-bom</artifactId>
  34. <version>${project.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. </dependencies>
  39. </dependencyManagement>
  40. <dependencies>
  41. <!-- dolphinscheduler -->
  42. <dependency>
  43. <groupId>org.apache.dolphinscheduler</groupId>
  44. <artifactId>dolphinscheduler-common</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dolphinscheduler</groupId>
  48. <artifactId>dolphinscheduler-service</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mockito</groupId>
  56. <artifactId>mockito-core</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.mockito</groupId>
  61. <artifactId>mockito-inline</artifactId>
  62. <version>3.12.4</version>
  63. <!-- TODO: move this dependency to root pom after removing powermock in the whole project -->
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.hadoop</groupId>
  68. <artifactId>hadoop-common</artifactId>
  69. <scope>test</scope>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-log4j12</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>jdk.tools</groupId>
  77. <artifactId>jdk.tools</artifactId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>servlet-api</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>servlet-api</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>log4j</groupId>
  89. <artifactId>log4j</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>org.apache.curator</groupId>
  93. <artifactId>curator-client</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>commons-configuration</groupId>
  97. <artifactId>commons-configuration</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>io.grpc</groupId>
  101. <artifactId>grpc-protobuf</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>io.netty</groupId>
  105. <artifactId>netty</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>org.codehaus.jackson</groupId>
  109. <artifactId>jackson-core-asl</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>org.codehaus.jackson</groupId>
  113. <artifactId>jackson-mapper-asl</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>com.google.protobuf</groupId>
  117. <artifactId>jackson-mapper-asl</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>com.google.code.gson</groupId>
  121. <artifactId>gson</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>xmlenc</groupId>
  125. <artifactId>xmlenc</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>commons-net</groupId>
  129. <artifactId>commons-net</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>org.apache.avro</groupId>
  133. <artifactId>avro</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>org.apache.zookeeper</groupId>
  137. <artifactId>zookeeper</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>javax.servlet.jsp</groupId>
  141. <artifactId>jsp-api</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>com.sun.jersey</groupId>
  145. <artifactId>jersey-json</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>com.sun.jersey</groupId>
  149. <artifactId>jersey-server</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>com.sun.jersey</groupId>
  153. <artifactId>jersey-core</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.hbase.thirdparty</groupId>
  159. <artifactId>hbase-noop-htrace</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.hadoop</groupId>
  163. <artifactId>hadoop-client</artifactId>
  164. <scope>test</scope>
  165. <exclusions>
  166. <exclusion>
  167. <groupId>org.slf4j</groupId>
  168. <artifactId>slf4j-log4j12</artifactId>
  169. </exclusion>
  170. <exclusion>
  171. <groupId>javax.servlet</groupId>
  172. <artifactId>servlet-api</artifactId>
  173. </exclusion>
  174. <exclusion>
  175. <groupId>org.codehaus.jackson</groupId>
  176. <artifactId>jackson-jaxrs</artifactId>
  177. </exclusion>
  178. <exclusion>
  179. <groupId>org.codehaus.jackson</groupId>
  180. <artifactId>jackson-xc</artifactId>
  181. </exclusion>
  182. <exclusion>
  183. <groupId>org.fusesource.leveldbjni</groupId>
  184. <artifactId>leveldbjni-all</artifactId>
  185. </exclusion>
  186. <exclusion>
  187. <groupId>org.apache.zookeeper</groupId>
  188. <artifactId>zookeeper</artifactId>
  189. </exclusion>
  190. <exclusion>
  191. <groupId>org.apache.hadoop</groupId>
  192. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  193. </exclusion>
  194. <exclusion>
  195. <groupId>com.sun.jersey</groupId>
  196. <artifactId>jersey-client</artifactId>
  197. </exclusion>
  198. <exclusion>
  199. <groupId>com.sun.jersey</groupId>
  200. <artifactId>jersey-core</artifactId>
  201. </exclusion>
  202. <exclusion>
  203. <groupId>javax.xml.bind</groupId>
  204. <artifactId>jaxb-api</artifactId>
  205. </exclusion>
  206. <exclusion>
  207. <groupId>log4j</groupId>
  208. <artifactId>log4j</artifactId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. </dependencies>
  213. <build>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-jar-plugin</artifactId>
  218. <configuration>
  219. <excludes>
  220. <exclude>config/</exclude>
  221. </excludes>
  222. </configuration>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. </project>