You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
7.3 KiB
203 lines
7.3 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!-- |
|
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
~ contributor license agreements. See the NOTICE file distributed with |
|
~ this work for additional information regarding copyright ownership. |
|
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
~ (the "License"); you may not use this file except in compliance with |
|
~ the License. You may obtain a copy of the License at |
|
~ |
|
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
~ |
|
~ Unless required by applicable law or agreed to in writing, software |
|
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
~ See the License for the specific language governing permissions and |
|
~ limitations under the License. |
|
--> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<parent> |
|
<artifactId>dolphinscheduler</artifactId> |
|
<groupId>org.apache.dolphinscheduler</groupId> |
|
<version>2.0.4-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
<artifactId>dolphinscheduler-data-quality</artifactId> |
|
<name>dolphinscheduler-data-quality</name> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<scala.binary.version>2.11</scala.binary.version> |
|
<spark.version>2.4.0</spark.version> |
|
<jackson.version>2.9.0</jackson.version> |
|
<scope>provided</scope> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.spark</groupId> |
|
<artifactId>spark-core_${scala.binary.version}</artifactId> |
|
<version>${spark.version}</version> |
|
<scope>${scope}</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-module-scala_2.11</artifactId> |
|
<groupId>com.fasterxml.jackson.module</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.spark</groupId> |
|
<artifactId>spark-sql_${scala.binary.version}</artifactId> |
|
<version>${spark.version}</version> |
|
<scope>${scope}</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-core</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.spark</groupId> |
|
<artifactId>spark-hive_${scala.binary.version}</artifactId> |
|
<version>${spark.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-httpclient</groupId> |
|
<artifactId>commons-httpclient</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>jackson-core-asl</artifactId> |
|
<groupId>org.codehaus.jackson</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>jackson-mapper-asl</artifactId> |
|
<groupId>org.codehaus.jackson</groupId> |
|
</exclusion> |
|
</exclusions> |
|
<scope>${scope}</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.h2database</groupId> |
|
<artifactId>h2</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.postgresql</groupId> |
|
<artifactId>postgresql</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>ru.yandex.clickhouse</groupId> |
|
<artifactId>clickhouse-jdbc</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-core</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.microsoft.sqlserver</groupId> |
|
<artifactId>mssql-jdbc</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>azure-keyvault</artifactId> |
|
<groupId>com.microsoft.azure</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.facebook.presto</groupId> |
|
<artifactId>presto-jdbc</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.guava</groupId> |
|
<artifactId>guava</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>${jackson.version}</version> |
|
<scope>${scope}</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-core</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.module</groupId> |
|
<artifactId>jackson-module-scala_2.11</artifactId> |
|
<version>${jackson.version}</version> |
|
<scope>${scope}</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-core</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.codehaus.janino</groupId> |
|
<artifactId>janino</artifactId> |
|
<version>3.0.8</version> |
|
<scope>${scope}</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>2.2</version> |
|
<configuration> |
|
<appendAssemblyId>false</appendAssemblyId> |
|
<descriptorRefs> |
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
</descriptorRefs> |
|
<archive> |
|
<manifest> |
|
<mainClass>org.apache.dolphinscheduler.data.quality.DataQualityApplication</mainClass> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-assembly</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |