2021-05-26 09:34:55 -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.
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>nifi-registry-extensions</artifactId>
|
|
|
|
<groupId>org.apache.nifi.registry</groupId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2021-05-26 09:34:55 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>nifi-registry-ranger</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>nifi-registry-ranger-assembly</module>
|
|
|
|
<module>nifi-registry-ranger-jersey-bundle</module>
|
|
|
|
<module>nifi-registry-ranger-plugin</module>
|
|
|
|
</modules>
|
|
|
|
|
2021-06-21 09:59:13 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2021-08-02 15:03:27 -04:00
|
|
|
<!-- Override commons-compress:1.19 from ranger -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2023-03-23 11:15:42 -04:00
|
|
|
<version>1.23.0</version>
|
2021-08-02 21:50:07 -04:00
|
|
|
</dependency>
|
2021-08-04 13:46:30 -04:00
|
|
|
<!-- Override jetty-server:9.4.20 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${jetty.version}</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>
|
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>
|
|
|
|
<version>9.31</version>
|
|
|
|
</dependency>
|
2023-06-20 11:12:04 -04:00
|
|
|
<!-- Override Guava 27 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>32.0.1-jre</version>
|
|
|
|
</dependency>
|
2021-06-21 09:59:13 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2023-04-08 09:36:07 -04:00
|
|
|
</project>
|