pom.xml 5.5 KB

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