pom.xml 5.3 KB

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