pom.xml 8.2 KB

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