mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 10:08:42 +00:00
- Upgraded sshd from 2.12.1 to 2.13.1 - Upgraded reactor-netty-http from 1.1.19 to 1.1.20 - Upgraded guava from 33.2.0-jre to 33.2.1-jre - Upgraded maven-artifact from 3.9.7 to 3.9.8 - Upgraded spring-integrations from 6.3.0 to 6.3.1 - Upgraded jjwt from 0.12.5 to 0.12.6 - Upgraded unboundid from 7.0.0 to 7.0.1 - Upgraded json-schema-validator from 1.4.0 to 1.4.2 - Upgraded Spring Boot from 3.3.0 to 3.3.1 - Upgraded jline from 3.26.1 to 3.26.2 - Upgraded com.amazonaws from 1.12.742 to 1.12.748 - Upgraded AWS SDK from 2.26.1 from 2.26.8 - Upgraded Spring from 6.1.9 to 6.1.10 - Upgraded Spring Security from 6.3.0 to 6.3.1 This closes #9001 Signed-off-by: David Handermann <exceptionfactory@apache.org>
72 lines
3.0 KiB
XML
72 lines
3.0 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-aws-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<aws-kinesis-client-library-version>2.6.0</aws-kinesis-client-library-version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>nifi-aws-processors</module>
|
|
<module>nifi-aws-nar</module>
|
|
<module>nifi-aws-service-api</module>
|
|
<module>nifi-aws-service-api-nar</module>
|
|
<module>nifi-aws-abstract-processors</module>
|
|
<module>nifi-aws-parameter-value-providers</module>
|
|
<module>nifi-aws-parameter-providers</module>
|
|
<module>nifi-aws-schema-registry-service</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- Override Guava 31.0.1 from amazon-kinesis-client -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>33.2.1-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-aws-service-api</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>sts</artifactId>
|
|
<version>${software.amazon.awssdk.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>netty-nio-client</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|