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>
58 lines
2.5 KiB
XML
58 lines
2.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-hbase_2-client-service-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<hbase.version>2.6.0-hadoop3</hbase.version>
|
|
</properties>
|
|
<modules>
|
|
<module>nifi-hbase_2-client-service</module>
|
|
<module>nifi-hbase_2-client-service-nar</module>
|
|
</modules>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<configuration>
|
|
<excludes combine.children="append">
|
|
<exclude>src/test/resources/fake.keytab</exclude>
|
|
<exclude>src/test/resources/krb5.conf</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- Override Guava 27 -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>33.2.1-jre</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|