pom.xml 5.3 KB

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