pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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-data-quality</artifactId>
  27. <packaging>jar</packaging>
  28. <name>dolphinscheduler-data-quality</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. <dependency>
  42. <groupId>org.apache.spark</groupId>
  43. <artifactId>spark-core_2.12</artifactId>
  44. <scope>provided</scope>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>com.fasterxml.jackson.module</groupId>
  48. <artifactId>jackson-module-scala_2.11</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.spark</groupId>
  54. <artifactId>spark-sql_2.12</artifactId>
  55. <scope>provided</scope>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-core</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.spark</groupId>
  65. <artifactId>spark-hive_2.12</artifactId>
  66. <scope>provided</scope>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>commons-httpclient</groupId>
  70. <artifactId>commons-httpclient</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpclient</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>org.codehaus.jackson</groupId>
  78. <artifactId>jackson-core-asl</artifactId>
  79. </exclusion>
  80. <exclusion>
  81. <groupId>org.codehaus.jackson</groupId>
  82. <artifactId>jackson-mapper-asl</artifactId>
  83. </exclusion>
  84. </exclusions>
  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>io.trino</groupId>
  101. <artifactId>trino-jdbc</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.clickhouse</groupId>
  105. <artifactId>clickhouse-jdbc</artifactId>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-core</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.databend</groupId>
  115. <artifactId>databend-jdbc</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.microsoft.sqlserver</groupId>
  119. <artifactId>mssql-jdbc</artifactId>
  120. <exclusions>
  121. <exclusion>
  122. <groupId>com.microsoft.azure</groupId>
  123. <artifactId>azure-keyvault</artifactId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.facebook.presto</groupId>
  129. <artifactId>presto-jdbc</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.google.guava</groupId>
  133. <artifactId>guava</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.fasterxml.jackson.core</groupId>
  137. <artifactId>jackson-databind</artifactId>
  138. <scope>provided</scope>
  139. <exclusions>
  140. <exclusion>
  141. <groupId>com.fasterxml.jackson.core</groupId>
  142. <artifactId>jackson-core</artifactId>
  143. </exclusion>
  144. </exclusions>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.fasterxml.jackson.module</groupId>
  148. <artifactId>jackson-module-scala_2.11</artifactId>
  149. <scope>provided</scope>
  150. <exclusions>
  151. <exclusion>
  152. <groupId>com.fasterxml.jackson.core</groupId>
  153. <artifactId>jackson-core</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.codehaus.janino</groupId>
  159. <artifactId>janino</artifactId>
  160. <scope>provided</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.commons</groupId>
  164. <artifactId>commons-collections4</artifactId>
  165. <scope>provided</scope>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <artifactId>maven-jar-plugin</artifactId>
  172. <configuration>
  173. <archive>
  174. <manifest>
  175. <mainClass>org.apache.dolphinscheduler.data.quality.DataQualityApplication</mainClass>
  176. </manifest>
  177. </archive>
  178. </configuration>
  179. </plugin>
  180. </plugins>
  181. </build>
  182. </project>