pom.xml 5.5 KB

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