pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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>org.powermock</groupId>
  57. <artifactId>powermock-module-junit4</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.powermock</groupId>
  62. <artifactId>powermock-api-mockito2</artifactId>
  63. <scope>test</scope>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.mockito</groupId>
  67. <artifactId>mockito-core</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.mockito</groupId>
  73. <artifactId>mockito-core</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.jacoco</groupId>
  78. <artifactId>org.jacoco.agent</artifactId>
  79. <classifier>runtime</classifier>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-test</artifactId>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <!--<resources>-->
  89. <!--<resource>-->
  90. <!--<directory>src/main/java</directory>-->
  91. <!--<includes>-->
  92. <!--<include>**/*.xml</include>-->
  93. <!--</includes>-->
  94. <!--<filtering>false</filtering>-->
  95. <!--</resource>-->
  96. <!--<resource>-->
  97. <!--<directory>src/main/resources</directory>-->
  98. <!--<includes>-->
  99. <!--<include>**/*.*</include>-->
  100. <!--</includes>-->
  101. <!--<filtering>false</filtering>-->
  102. <!--</resource>-->
  103. <!--</resources>-->
  104. <plugins>
  105. <!--<plugin>
  106. <artifactId>maven-assembly-plugin</artifactId>
  107. <configuration>
  108. <descriptors>
  109. <descriptor>src/main/assembly/package.xml</descriptor>
  110. </descriptors>
  111. <appendAssemblyId>false</appendAssemblyId>
  112. </configuration>
  113. <executions>
  114. <execution>
  115. <id>make-assembly</id>
  116. <phase>package</phase>
  117. <goals>
  118. <goal>single</goal>
  119. </goals>
  120. </execution>
  121. </executions>
  122. </plugin>-->
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-compiler-plugin</artifactId>
  126. <configuration>
  127. <source>${java.version}</source>
  128. <target>${java.version}</target>
  129. <encoding>${project.build.sourceEncoding}</encoding>
  130. </configuration>
  131. </plugin>
  132. </plugins>
  133. </build>
  134. </project>