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