mirror of
https://github.com/apache/nifi.git
synced 2025-02-08 19:14:57 +00:00
- Fixed logging logic for tests vs runtime scope - Restoring behavior to testProcessUnparsableRecordWithRawOutputWithCheckpoint that changed in NIFI-12998 presumably because of log dependency changes. Now that we have a single provider the test behavior appears to be back to normal. - Upgraded AWS SDK 1 from 1.12.686 to 1.12.710 - Upgraded AWS SDK 2 from 2.25.16 to 2.25.40 - Upgraded Azure SDK BOM from 1.2.21 to 1.2.23 - Upgraded GCP Libraries from 26.34.0 to 26.37.0 - Upgraded Fabric8 Kubernetes Client from 6.10.0 to 6.12.1 - Upgraded Commons CLI from 1.6.0 to 1.7.0 - Upgraded Commons Codec from 1.16.1 to 1.17.0 - Upgraded zstd-jni from 1.5.6-1 to 1.5.6-3 - Upgraded Commons Text from 1.11.0 to 1.12.0 - Upgraded Test Containers from 1.19.4 to 1.19.7 - Upgraded JAXB Runtime from 4.0.4 to 4.0.5 - Upgraded JAXB API from 4.0.1 to 4.0.2 - Upgraded Jersey from 3.1.4 to 3.1.6 - Upgraded Log4j 2 from 2.23.0 to 2.23.1 - Upgraded Logback from 1.5.5 to 1.5.6 - Upgraded Mockito from 5.8.0 to 5.11.0 - Upgraded Swagger Annotations from 2.2.20 to 2.2.21 - Upgraded jsoup from 1.17.1 to 1.17.2 - Upgraded JUnit Platform Commons from 1.10.0 to 1.10.2 - Upgraded Checkstyle from 9.3 to 10.15.0 - Upgraded ASM from 9.6 to 9.7 This closes #8708 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.16.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.tukaani</groupId>
|
|
<artifactId>xz</artifactId>
|
|
<version>1.9</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>
|