2015-03-09 21:10:11 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-03-15 10:08:31 -04:00
|
|
|
<!--
|
|
|
|
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-28 20:14: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-03-15 10:08:31 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-external</artifactId>
|
2022-03-21 14:58:27 -04:00
|
|
|
<version>1.17.0-SNAPSHOT</version>
|
2016-03-15 10:08:31 -04:00
|
|
|
</parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-spark-receiver</artifactId>
|
2021-05-12 16:50:46 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2021-08-02 15:03:27 -04:00
|
|
|
<!-- Override commons-compress -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>1.21</version>
|
|
|
|
</dependency>
|
2021-08-27 04:03:20 -04:00
|
|
|
<!-- Override commons-beanutils -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>1.9.4</version>
|
|
|
|
</dependency>
|
2021-10-05 16:02:17 -04:00
|
|
|
<!-- Override zookeeper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
2022-04-23 18:11:06 -04:00
|
|
|
<version>${zookeeper.version}</version>
|
2021-10-05 16:02:17 -04:00
|
|
|
</dependency>
|
2021-10-27 21:52:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
<version>${netty.3.version}</version>
|
|
|
|
</dependency>
|
2021-05-12 16:50:46 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2016-03-15 10:08:31 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-streaming_2.10</artifactId>
|
2016-04-21 18:11:12 -04:00
|
|
|
<scope>provided</scope>
|
2018-03-09 15:00:29 -05:00
|
|
|
<version>1.6.0</version>
|
2021-10-04 21:10:20 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
2016-03-15 10:08:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-site-to-site-client</artifactId>
|
2022-03-21 14:58:27 -04:00
|
|
|
<version>1.17.0-SNAPSHOT</version>
|
2016-03-15 10:08:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-07-26 22:36:04 -04:00
|
|
|
</project>
|