pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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-datasource-plugin</artifactId>
  24. <version>3.2.2-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-datasource-api</artifactId>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.apache.dolphinscheduler</groupId>
  30. <artifactId>dolphinscheduler-spi</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.dolphinscheduler</groupId>
  34. <artifactId>dolphinscheduler-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.dolphinscheduler</groupId>
  38. <artifactId>dolphinscheduler-task-api</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-io</groupId>
  42. <artifactId>commons-io</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-api</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.guava</groupId>
  51. <artifactId>guava</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-codec</groupId>
  55. <artifactId>commons-codec</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.commons</groupId>
  59. <artifactId>commons-collections4</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.oshi</groupId>
  63. <artifactId>oshi-core</artifactId>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-jdbc</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.hbase.thirdparty</groupId>
  72. <artifactId>hbase-noop-htrace</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.hadoop</groupId>
  76. <artifactId>hadoop-client</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>slf4j-log4j12</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>javax.servlet</groupId>
  84. <artifactId>servlet-api</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>org.codehaus.jackson</groupId>
  88. <artifactId>jackson-jaxrs</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>org.codehaus.jackson</groupId>
  92. <artifactId>jackson-xc</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>org.fusesource.leveldbjni</groupId>
  96. <artifactId>leveldbjni-all</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>org.apache.zookeeper</groupId>
  100. <artifactId>zookeeper</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.apache.hadoop</groupId>
  104. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>com.sun.jersey</groupId>
  108. <artifactId>jersey-client</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>com.sun.jersey</groupId>
  112. <artifactId>jersey-core</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>javax.xml.bind</groupId>
  116. <artifactId>jaxb-api</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>log4j</groupId>
  120. <artifactId>log4j</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.zaxxer</groupId>
  126. <artifactId>HikariCP</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.alibaba</groupId>
  130. <artifactId>druid</artifactId>
  131. </dependency>
  132. </dependencies>
  133. </project>