mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 01:58:32 +00:00
This closes #9556 - AWS SDK v1 from 1.2.778 to 1.12.779 - AWS SDK v2 from 2.29.15 to 2.29.22 - ZSTD from 1.5.6-7 to 1.5.6-8 - commons-io from 2.17.0 to 2.18.0 - Test containers from 1.20.3 to 1.20.4 - log4j from 2.24.1 to 2.24.2 - Spring Security from 6.4.0 to 6.4.1 - jsoup from 1.18.1 to 1.18.2 - metrics-jvm and metrics-core from 4.2.28 to 4.2.29 - elasticsearch client from 8.15.3 to 8.16.1 - Spring integration from 6.3.5 to 6.4.0 - greenmail from 2.0.1 to 2.1.1 - gremlin from 3.7.2 to 3.7.3 - janusgraph from 1.0.0 to 1.2.0-20241120 - amqp client from 5.22.0 to 5.23.0 - neo4j driver from 5.26.0 to 5.26.3 - mongodb driver from 4.11.4 to 4.11.5 - jackson-datatype-protobuf from 0.9.16 to 0.9.17 - Redis from 3.3.5 to 3.4.0 - Slack bolt from 1.44.1 to 1.44.2 - Spring boot from 3.3.5 to 3.4.0 - datafaker from 2.4.1 to 2.4.2 - Spring retry from 2.0.9 to 2.0.10 - Kotlin from 2.0.21 to 2.1.0 Signed-off-by: Joseph Witt <joewitt@apache.org>
43 lines
1.8 KiB
XML
43 lines
1.8 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">
|
|
<parent>
|
|
<artifactId>nifi-commons</artifactId>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<version>2.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>nifi-metrics</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
<artifactId>metrics-jvm</artifactId>
|
|
<version>4.2.29</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
<artifactId>metrics-core</artifactId>
|
|
<version>4.2.29</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|