mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 10:38:33 +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>
57 lines
2.6 KiB
XML
57 lines
2.6 KiB
XML
<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">
|
|
<!--
|
|
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.
|
|
-->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-framework-extensions</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nifi-provenance-repository-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>nifi-persistent-provenance-repository</module>
|
|
<module>nifi-volatile-provenance-repository</module>
|
|
<module>nifi-provenance-repository-nar</module>
|
|
</modules>
|
|
<properties>
|
|
<lucene.version>9.12.0</lucene.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-persistent-provenance-repository</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-volatile-provenance-repository</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-core</artifactId>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-backward-codecs</artifactId>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|