mirror of
https://github.com/apache/nifi.git
synced 2025-03-06 17:39:36 +00:00
- Jackson from 2.17.2 to 2.18.0 - zstd-jni from 1.5.6-5 to 1.5.6-6 - gson from 2.10.1 to 2.11.0 - okio from 3.9.0 to 3.9.1 - Fabric8 Kubernetes from 6.13.1 to 6.13.4 - Netty from 4.1.113.Final to 4.1.114.Final - swagger-annotations from 2.2.23 to 2.2.24 - avro from 1.11.3 to 1.11.4 - commons-lang3 from 3.16.0 to 3.17.0 - log4j from 2.24.0 to 2.24.1 - Jetty from 12.0.13 to 12.0.14 - junit-bom from 5.10.3 to 5.10.4 - junit-platform-commons from 1.10.3 to 1.10.4 - mockito from 5.13.0 to 5.14.1 - testcontainers from 1.20.1 to 1.20.2 - snakeyaml from 2.2 to 2.3 - AWS SDK v2 from 2.28.4 to 2.28.13 - flyway from 10.18.0 to 10.18.2 - jline from 3.26.3 to 3.27.0 - neo4j driver from 5.24.0 to 5.25.0 - maxmind from 3.1.0 to 3.1.1 - geoip2 from 4.2.0 to 4.2.1 - amqp-client from 5.21.0 to 5.22.0 - commons-csv from 1.11.0 to 1.12.0 - splunk from 1.9.4 to 1.9.5 - lucene from 9.11.1 to 9.12.0 - Google BOM from 26.46.0 to 26.47.0 - Azure BOM from 1.2.26 to 1.2.28 - msal4j from 1.16.1 to 1.17.1 - json-schema-validator from 1.5.1 to 1.5.2 - checker-qual from 3.45.0 to 3.47.0 - checkstyle from 10.16.0 to 10.18.2 Signed-off-by: David Handermann <exceptionfactory@apache.org>
81 lines
3.5 KiB
XML
81 lines
3.5 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-standard-shared-bom</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<relativePath>../nifi-standard-shared-bundle/nifi-standard-shared-bom</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>nifi-azure-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<!-- when changing the Azure SDK version, also update msal4j to the version that is required by azure-identity -->
|
|
<azure.sdk.bom.version>1.2.28</azure.sdk.bom.version>
|
|
<msal4j.version>1.17.1</msal4j.version>
|
|
<qpid.proton.version>0.34.1</qpid.proton.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>nifi-azure-processors</module>
|
|
<module>nifi-azure-reporting-task</module>
|
|
<module>nifi-azure-graph-authorizer</module>
|
|
<module>nifi-azure-nar</module>
|
|
<module>nifi-azure-services-api</module>
|
|
<module>nifi-azure-services-api-nar</module>
|
|
<module>nifi-azure-parameter-providers</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-sdk-bom</artifactId>
|
|
<version>${azure.sdk.bom.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>33.2.1-jre</version>
|
|
</dependency>
|
|
<!-- 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>
|
|
<!-- 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 -->
|
|
<dependency>
|
|
<groupId>com.nimbusds</groupId>
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
<version>9.40</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|