2015-11-11 23:06:04 -05: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">
|
2015-11-11 23:06:04 -05: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>
|
2015-11-11 23:06:04 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nifi-azure-bundle</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2019-09-13 16:10:09 -04:00
|
|
|
<properties>
|
2023-02-03 13:37:48 -05:00
|
|
|
<azure.sdk.bom.version>1.2.9</azure.sdk.bom.version>
|
2022-08-17 19:55:17 -04:00
|
|
|
<microsoft.azure-storage.version>8.6.6</microsoft.azure-storage.version>
|
2023-01-18 13:13:40 -05:00
|
|
|
<msal4j.version>1.13.3</msal4j.version>
|
2023-03-08 15:53:52 -05:00
|
|
|
<qpid.proton.version>0.34.1</qpid.proton.version>
|
2019-09-13 16:10:09 -04:00
|
|
|
</properties>
|
|
|
|
|
2015-11-11 23:06:04 -05:00
|
|
|
<modules>
|
|
|
|
<module>nifi-azure-processors</module>
|
2019-10-15 14:12:07 -04:00
|
|
|
<module>nifi-azure-reporting-task</module>
|
2020-06-25 15:44:06 -04:00
|
|
|
<module>nifi-azure-graph-authorizer</module>
|
2015-11-11 23:06:04 -05:00
|
|
|
<module>nifi-azure-nar</module>
|
2019-09-13 16:10:09 -04:00
|
|
|
<module>nifi-azure-services-api</module>
|
|
|
|
<module>nifi-azure-services-api-nar</module>
|
2022-10-05 23:09:02 -04:00
|
|
|
<module>nifi-azure-parameter-providers</module>
|
2015-11-11 23:06:04 -05:00
|
|
|
</modules>
|
|
|
|
|
2019-09-13 16:10:09 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-08-17 19:55:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-sdk-bom</artifactId>
|
|
|
|
<version>${azure.sdk.bom.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2019-09-13 16:10:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
|
|
|
<artifactId>azure-storage</artifactId>
|
2022-08-17 19:55:17 -04:00
|
|
|
<version>${microsoft.azure-storage.version}</version>
|
2020-05-01 14:55:50 -04:00
|
|
|
</dependency>
|
2022-02-02 16:58:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2022-11-18 07:56:31 -05:00
|
|
|
<version>31.1-jre</version>
|
2022-02-02 16:58:17 -05:00
|
|
|
</dependency>
|
2023-02-25 14:03:37 -05:00
|
|
|
<!-- Override Apache Qpid Proton J for Azure EventHubs to resolve PROTON-2347 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>proton-j</artifactId>
|
|
|
|
<version>${qpid.proton.version}</version>
|
|
|
|
</dependency>
|
2023-03-28 15:30:13 -04:00
|
|
|
<!-- Override nimbus-jose-jwt 9.22 from msal4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
|
|
<version>9.31</version>
|
|
|
|
</dependency>
|
2019-09-13 16:10:09 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-11-11 23:06:04 -05:00
|
|
|
</project>
|