2018-06-04 11:37:48 -04:00
|
|
|
<?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.
|
|
|
|
-->
|
2019-05-31 12:50:09 -04:00
|
|
|
<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">
|
2018-06-04 11:37:48 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-bundle</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nifi-hive3-processors</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-processor-utils</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
2021-03-09 21:26:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-security-kerberos</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2021-03-09 21:26:03 -05:00
|
|
|
</dependency>
|
2018-06-04 11:37:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dbcp-service-api</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-services-api</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-record-utils</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-service-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-credentials-service-api</artifactId>
|
2021-07-30 10:51:16 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-user-service-api</artifactId>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-jdbc</artifactId>
|
2020-05-06 16:59:50 -04:00
|
|
|
<version>${hive.version}</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2021-10-04 21:10:20 -04:00
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
2018-06-04 11:37:48 -04:00
|
|
|
</exclusion>
|
2018-06-25 15:07:05 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-server</artifactId>
|
|
|
|
</exclusion>
|
2021-10-04 21:10:20 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2018-06-04 11:37:48 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-09-09 15:36:56 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-exec</artifactId>
|
|
|
|
<version>${hive.version}</version>
|
|
|
|
<classifier>core</classifier>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2021-09-09 15:36:56 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- hive-exec:core doesn't contain these dependencies (as opposed to regular hive-exec) so these need to be pulled in -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.esotericsoftware</groupId>
|
|
|
|
<artifactId>kryo-shaded</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro-mapred</artifactId>
|
|
|
|
<classifier>hadoop2</classifier>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.javaewah</groupId>
|
|
|
|
<artifactId>JavaEWAH</artifactId>
|
|
|
|
<version>0.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-spark-client</artifactId>
|
|
|
|
<version>${hive.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.orc</groupId>
|
|
|
|
<artifactId>orc-tools</artifactId>
|
|
|
|
<version>1.5.6</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2021-11-19 02:51:15 -05:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
</exclusion>
|
2021-09-09 15:36:56 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jodd</groupId>
|
|
|
|
<artifactId>jodd-core</artifactId>
|
|
|
|
<version>3.5.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-storage-api</artifactId>
|
|
|
|
<version>2.7.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- /hive-exec:core doesn't contain these dependencies (as opposed to regular hive-exec) so these need to be pulled in -->
|
|
|
|
|
2018-06-04 11:37:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-streaming</artifactId>
|
2020-05-06 16:59:50 -04:00
|
|
|
<version>${hive.version}</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
2021-10-04 21:10:20 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2021-09-09 15:36:56 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-exec</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2018-06-04 11:37:48 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive.hcatalog</groupId>
|
|
|
|
<artifactId>hive-hcatalog-core</artifactId>
|
2020-05-06 16:59:50 -04:00
|
|
|
<version>${hive.version}</version>
|
2021-10-04 21:10:20 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2021-09-09 15:36:56 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-exec</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2021-10-04 21:10:20 -04:00
|
|
|
</exclusions>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
2021-08-03 08:50:13 -04:00
|
|
|
<!-- Override groovy-all:2.4.11 from Hive -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
<version>2.4.21</version>
|
|
|
|
</dependency>
|
2018-06-04 11:37:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-utils</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stephenc.findbugs</groupId>
|
|
|
|
<artifactId>findbugs-annotations</artifactId>
|
|
|
|
<version>1.3.9-1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock-record-utils</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-03 09:24:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
2020-02-23 18:44:28 -05:00
|
|
|
<version>2.7.0</version>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-03 09:24:29 -04:00
|
|
|
</dependency>
|
2021-10-04 21:10:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
</dependency>
|
2021-12-15 17:47:44 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</dependency>
|
2019-08-09 04:38:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-31 12:50:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-schema-registry-service-api</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2019-05-31 12:50:09 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-services</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2019-05-31 12:50:09 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2020-09-17 13:33:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-test-utils</artifactId>
|
2021-11-03 11:53:37 -04:00
|
|
|
<version>1.16.0-SNAPSHOT</version>
|
2020-09-17 13:33:54 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependencies>
|
2019-05-31 12:50:09 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
|
|
|
<exclude>src/test/resources/nested-map-input.json</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-06-04 11:37:48 -04:00
|
|
|
</project>
|