2016-07-26 10:13:42 -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-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-07-26 10:13:42 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-nar-bundles</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-07-26 10:13:42 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nifi-ranger-bundle</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>nifi-ranger-plugin</module>
|
|
|
|
<module>nifi-ranger-nar</module>
|
|
|
|
<module>nifi-ranger-resources</module>
|
|
|
|
</modules>
|
|
|
|
|
2022-06-21 08:51:11 -04:00
|
|
|
<properties>
|
2023-06-28 11:11:00 -04:00
|
|
|
<ranger.hadoop.version>3.3.6</ranger.hadoop.version>
|
2022-06-21 08:51:11 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-12 16:50:46 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
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-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>
|
2022-06-21 08:51:11 -04:00
|
|
|
<!-- Override Hadoop -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<version>${ranger.hadoop.version}</version>
|
|
|
|
</dependency>
|
2023-03-27 19:16:51 -04:00
|
|
|
<!-- Override SolrJ 8.6.3 from Ranger -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
|
<artifactId>solr-solrj</artifactId>
|
2023-04-08 09:36:07 -04:00
|
|
|
<version>8.11.2</version>
|
2023-03-27 19:16:51 -04:00
|
|
|
</dependency>
|
2023-03-28 15:30:13 -04:00
|
|
|
<!-- Override nimbus-jose-jwt 9.8.1 from hadoop-auth -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
2023-09-14 18:41:49 -04:00
|
|
|
<version>9.33</version>
|
2023-03-28 15:30:13 -04:00
|
|
|
</dependency>
|
2023-03-28 22:39:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-auth</artifactId>
|
|
|
|
<version>${ranger.hadoop.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-reload4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2023-06-20 11:12:04 -04:00
|
|
|
<!-- Override Guava 27 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2023-09-14 18:41:49 -04:00
|
|
|
<version>32.1.2-jre</version>
|
2023-06-20 11:12:04 -04:00
|
|
|
</dependency>
|
2021-05-12 16:50:46 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2016-07-26 10:13:42 -04:00
|
|
|
</project>
|