pom.xml 5.6 KB

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