pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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>2.0.0-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-server</artifactId>
  27. <name>dolphinscheduler-server</name>
  28. <packaging>jar</packaging>
  29. <dependencies>
  30. <!-- dolphinscheduler -->
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-service</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.dolphinscheduler</groupId>
  37. <artifactId>dolphinscheduler-spi</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.dolphinscheduler</groupId>
  41. <artifactId>dolphinscheduler-task-datax</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.dolphinscheduler</groupId>
  45. <artifactId>dolphinscheduler-task-flink</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.dolphinscheduler</groupId>
  49. <artifactId>dolphinscheduler-task-http</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.dolphinscheduler</groupId>
  53. <artifactId>dolphinscheduler-task-mr</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.dolphinscheduler</groupId>
  57. <artifactId>dolphinscheduler-task-pigeon</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.dolphinscheduler</groupId>
  61. <artifactId>dolphinscheduler-task-procedure</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.dolphinscheduler</groupId>
  65. <artifactId>dolphinscheduler-task-python</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.dolphinscheduler</groupId>
  69. <artifactId>dolphinscheduler-task-shell</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.dolphinscheduler</groupId>
  73. <artifactId>dolphinscheduler-task-spark</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.dolphinscheduler</groupId>
  77. <artifactId>dolphinscheduler-task-sql</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.dolphinscheduler</groupId>
  81. <artifactId>dolphinscheduler-task-sqoop</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.httpcomponents</groupId>
  85. <artifactId>httpclient</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.httpcomponents</groupId>
  89. <artifactId>httpcore</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.guava</groupId>
  93. <artifactId>guava</artifactId>
  94. <exclusions>
  95. <exclusion>
  96. <groupId>com.google.code.findbugs</groupId>
  97. <artifactId>jsr305</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.powermock</groupId>
  103. <artifactId>powermock-module-junit4</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.powermock</groupId>
  108. <artifactId>powermock-api-mockito2</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.mockito</groupId>
  113. <artifactId>mockito-core</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-test</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-test</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-jar-plugin</artifactId>
  132. <configuration>
  133. <excludes>
  134. <exclude>config/</exclude>
  135. <exclude>*.yaml</exclude>
  136. <exclude>*.xml</exclude>
  137. </excludes>
  138. </configuration>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>