pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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</artifactId>
  23. <groupId>org.apache.dolphinscheduler</groupId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>dolphinscheduler-data-quality</artifactId>
  28. <name>dolphinscheduler-data-quality</name>
  29. <packaging>jar</packaging>
  30. <properties>
  31. <scala.binary.version>2.11</scala.binary.version>
  32. <spark.version>2.4.0</spark.version>
  33. <jackson.version>2.9.10</jackson.version>
  34. <jackson.databind.version>2.9.10.8</jackson.databind.version>
  35. <scope>provided</scope>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.apache.spark</groupId>
  40. <artifactId>spark-core_${scala.binary.version}</artifactId>
  41. <version>${spark.version}</version>
  42. <scope>${scope}</scope>
  43. <exclusions>
  44. <exclusion>
  45. <artifactId>jackson-module-scala_2.11</artifactId>
  46. <groupId>com.fasterxml.jackson.module</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.spark</groupId>
  52. <artifactId>spark-sql_${scala.binary.version}</artifactId>
  53. <version>${spark.version}</version>
  54. <scope>${scope}</scope>
  55. <exclusions>
  56. <exclusion>
  57. <artifactId>jackson-core</artifactId>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.spark</groupId>
  64. <artifactId>spark-hive_${scala.binary.version}</artifactId>
  65. <version>${spark.version}</version>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>commons-httpclient</groupId>
  69. <artifactId>commons-httpclient</artifactId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>jackson-core-asl</artifactId>
  77. <groupId>org.codehaus.jackson</groupId>
  78. </exclusion>
  79. <exclusion>
  80. <artifactId>jackson-mapper-asl</artifactId>
  81. <groupId>org.codehaus.jackson</groupId>
  82. </exclusion>
  83. </exclusions>
  84. <scope>${scope}</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.h2database</groupId>
  88. <artifactId>h2</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>mysql</groupId>
  93. <artifactId>mysql-connector-java</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.postgresql</groupId>
  97. <artifactId>postgresql</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>ru.yandex.clickhouse</groupId>
  101. <artifactId>clickhouse-jdbc</artifactId>
  102. <exclusions>
  103. <exclusion>
  104. <artifactId>jackson-core</artifactId>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.microsoft.sqlserver</groupId>
  111. <artifactId>mssql-jdbc</artifactId>
  112. <exclusions>
  113. <exclusion>
  114. <artifactId>azure-keyvault</artifactId>
  115. <groupId>com.microsoft.azure</groupId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.facebook.presto</groupId>
  121. <artifactId>presto-jdbc</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.google.guava</groupId>
  125. <artifactId>guava</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.fasterxml.jackson.core</groupId>
  129. <artifactId>jackson-databind</artifactId>
  130. <version>${jackson.databind.version}</version>
  131. <scope>${scope}</scope>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>jackson-core</artifactId>
  135. <groupId>com.fasterxml.jackson.core</groupId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.fasterxml.jackson.module</groupId>
  141. <artifactId>jackson-module-scala_2.11</artifactId>
  142. <version>${jackson.version}</version>
  143. <scope>${scope}</scope>
  144. <exclusions>
  145. <exclusion>
  146. <artifactId>jackson-core</artifactId>
  147. <groupId>com.fasterxml.jackson.core</groupId>
  148. </exclusion>
  149. </exclusions>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.codehaus.janino</groupId>
  153. <artifactId>janino</artifactId>
  154. <version>3.0.8</version>
  155. <scope>${scope}</scope>
  156. </dependency>
  157. </dependencies>
  158. </project>