mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 01:58:32 +00:00
- Upgraded Logback from 1.5.6 to 1.5.7 - Upgraded brotli4j from 1.16.0 to 1.17.0 - Upgraded AWS SDK from 1.12.767 to 1.12.770 - Upgraded AWS SDK from 2.27.1 to 2.27.14 - Upgraded H2 from 2.3.230 to 2.3.232 - Upgraded Commons CLI from 1.8.0 to 1.9.0 - Upgraded Dropwizard Metrics from 4.2.26 to 4.2.27 - Upgraded Kubernetes Client from 6.13.2 to 6.13.3 - Upgraded Reactor Netty from 1.1.21 to 1.1.22 - Upgraded Commons Compress from 1.27.0 to 1.27.1 - Upgraded Mockito from 5.12.0 to 5.13.0 - Upgraded Slack API from 1.40.3 to 1.42.0 - Upgraded Project Reactor Core from 3.6.8 to 3.6.9 - Upgraded Iceberg from 1.6.0 to 1.6.1 - Upgraded FlywayDB from 10.17.0 to 10.17.2 - Upgraded GitHub API 1.323 to 1.324 - Upgraded PostgreSQL from 42.7.3 to 42.7.4 - Upgraded Spring Integration from 6.3.2 to 6.3.3 - Upgraded Spring Retry 2.0.7 to 2.0.8 - Upgraded Spring Vault from 3.1.1 to 3.1.2 This closes #9206 Signed-off-by: David Handermann <exceptionfactory@apache.org>
73 lines
3.0 KiB
XML
73 lines
3.0 KiB
XML
<?xml version="1.0"?>
|
|
<!-- 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-compress-bundle</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nifi-compress-processors</artifactId>
|
|
<packaging>jar</packaging>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-utils</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.jponge</groupId>
|
|
<artifactId>lzma-java</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.luben</groupId>
|
|
<artifactId>zstd-jni</artifactId>
|
|
<version>${com.github.luben.zstd-jni.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aayushatharva.brotli4j</groupId>
|
|
<artifactId>brotli4j</artifactId>
|
|
<version>1.17.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.tukaani</groupId>
|
|
<artifactId>xz</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial.snappy</groupId>
|
|
<artifactId>snappy-java</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<configuration>
|
|
<excludes combine.children="append">
|
|
<exclude>src/test/resources/CompressedData/SampleFile.txt*</exclude>
|
|
<exclude>src/test/resources/CompressedData/SampleFileConcat.txt*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|