pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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>3.2.2-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-common</artifactId>
  27. <packaging>jar</packaging>
  28. <name>dolphinscheduler-common</name>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-bom</artifactId>
  34. <version>${project.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. </dependencies>
  39. </dependencyManagement>
  40. <dependencies>
  41. <!-- dolphinscheduler -->
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.httpcomponents</groupId>
  48. <artifactId>httpclient</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.google.guava</groupId>
  52. <artifactId>guava</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-context</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-aop</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.core</groupId>
  64. <artifactId>jackson-databind</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-collections4</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-beanutils</groupId>
  72. <artifactId>commons-beanutils</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.aliyun.oss</groupId>
  80. <artifactId>aliyun-sdk-oss</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.amazonaws</groupId>
  84. <artifactId>aws-java-sdk-s3</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.huaweicloud</groupId>
  88. <artifactId>esdk-obs-java-bundle</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.github.oshi</groupId>
  92. <artifactId>oshi-core</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.baomidou</groupId>
  96. <artifactId>mybatis-plus-annotation</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.github.rholder</groupId>
  100. <artifactId>guava-retrying</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.netty</groupId>
  104. <artifactId>netty-all</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.squareup.okhttp3</groupId>
  108. <artifactId>okhttp</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>javax.servlet</groupId>
  112. <artifactId>servlet-api</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.mortbay.jetty</groupId>
  117. <artifactId>jetty</artifactId>
  118. <version>6.1.26</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.github.stefanbirkner</groupId>
  123. <artifactId>system-lambda</artifactId>
  124. </dependency>
  125. <!-- logback -->
  126. <dependency>
  127. <groupId>ch.qos.logback</groupId>
  128. <artifactId>logback-classic</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>ch.qos.logback</groupId>
  132. <artifactId>logback-core</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.google.cloud</groupId>
  136. <artifactId>google-cloud-storage</artifactId>
  137. <optional>true</optional>
  138. <exclusions>
  139. <exclusion>
  140. <groupId>org.codehaus.mojo</groupId>
  141. <artifactId>animal-sniffer-annotations</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>io.perfmark</groupId>
  145. <artifactId>perfmark-api</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>com.google.api.grpc</groupId>
  149. <artifactId>proto-google-common-protos</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>com.google.protobuf</groupId>
  153. <artifactId>protobuf-java</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>com.google.protobuf</groupId>
  157. <artifactId>protobuf-java-util</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. </dependencies>
  162. </project>