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>
|
2024-04-03 20:34:24 -04:00
|
|
|
<artifactId>nifi-standard-shared-bom</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2023-10-25 13:22:26 -04:00
|
|
|
<relativePath>../nifi-standard-shared-bundle/nifi-standard-shared-bom</relativePath>
|
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>
|
2024-05-09 14:37:33 -04:00
|
|
|
<!-- when changing the Azure SDK version, also update msal4j to the version that is required by azure-identity -->
|
2024-08-09 14:14:01 -04:00
|
|
|
<azure.sdk.bom.version>1.2.26</azure.sdk.bom.version>
|
2024-07-23 13:52:25 -04:00
|
|
|
<msal4j.version>1.16.1</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>
|
2022-02-02 16:58:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2024-06-24 20:26:45 -04:00
|
|
|
<version>33.2.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>
|
2024-05-09 14:37:33 -04:00
|
|
|
<!-- Set msal4j version for azure-identity and nifi-azure-graph-authorizer -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
|
|
|
<artifactId>msal4j</artifactId>
|
|
|
|
<version>${msal4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Override nimbus-jose-jwt from msal4j -->
|
2023-03-28 15:30:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
2024-07-05 01:38:09 -04:00
|
|
|
<version>9.40</version>
|
2023-03-28 15:30:13 -04:00
|
|
|
</dependency>
|
2019-09-13 16:10:09 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-11-11 23:06:04 -05:00
|
|
|
</project>
|