pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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>${revision}</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-server</artifactId>
  27. <name>dolphinscheduler-server</name>
  28. <packaging>jar</packaging>
  29. <properties>
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-spi</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.dolphinscheduler</groupId>
  39. <artifactId>dolphinscheduler-common</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>io.netty</groupId>
  43. <artifactId>netty</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>io.netty</groupId>
  47. <artifactId>netty-all</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>com.google</groupId>
  51. <artifactId>netty</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <artifactId>log4j-slf4j-impl</artifactId>
  55. <groupId>org.apache.logging.log4j</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.dolphinscheduler</groupId>
  61. <artifactId>dolphinscheduler-dao</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <artifactId>spring-boot-starter-logging</artifactId>
  65. <groupId>org.springframework.boot</groupId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.dolphinscheduler</groupId>
  71. <artifactId>dolphinscheduler-service</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.curator</groupId>
  75. <artifactId>curator-framework</artifactId>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.apache.zookeeper</groupId>
  79. <artifactId>zookeeper</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.curator</groupId>
  85. <artifactId>curator-recipes</artifactId>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>org.apache.zookeeper</groupId>
  89. <artifactId>zookeeper</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.zookeeper</groupId>
  95. <artifactId>zookeeper</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpclient</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpcore</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.dolphinscheduler</groupId>
  112. <artifactId>dolphinscheduler-alert</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.powermock</groupId>
  116. <artifactId>powermock-module-junit4</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.powermock</groupId>
  121. <artifactId>powermock-api-mockito2</artifactId>
  122. <scope>test</scope>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>org.mockito</groupId>
  126. <artifactId>mockito-core</artifactId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mockito</groupId>
  132. <artifactId>mockito-core</artifactId>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework</groupId>
  137. <artifactId>spring-test</artifactId>
  138. </dependency>
  139. </dependencies>
  140. <build>
  141. <!--<resources>-->
  142. <!--<resource>-->
  143. <!--<directory>src/main/java</directory>-->
  144. <!--<includes>-->
  145. <!--<include>**/*.xml</include>-->
  146. <!--</includes>-->
  147. <!--<filtering>false</filtering>-->
  148. <!--</resource>-->
  149. <!--<resource>-->
  150. <!--<directory>src/main/resources</directory>-->
  151. <!--<includes>-->
  152. <!--<include>**/*.*</include>-->
  153. <!--</includes>-->
  154. <!--<filtering>false</filtering>-->
  155. <!--</resource>-->
  156. <!--</resources>-->
  157. <plugins>
  158. <!--<plugin>
  159. <artifactId>maven-assembly-plugin</artifactId>
  160. <configuration>
  161. <descriptors>
  162. <descriptor>src/main/assembly/package.xml</descriptor>
  163. </descriptors>
  164. <appendAssemblyId>false</appendAssemblyId>
  165. </configuration>
  166. <executions>
  167. <execution>
  168. <id>make-assembly</id>
  169. <phase>package</phase>
  170. <goals>
  171. <goal>single</goal>
  172. </goals>
  173. </execution>
  174. </executions>
  175. </plugin>-->
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <configuration>
  180. <source>${java.version}</source>
  181. <target>${java.version}</target>
  182. <encoding>${project.build.sourceEncoding}</encoding>
  183. </configuration>
  184. </plugin>
  185. </plugins>
  186. </build>
  187. </project>