mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 18:48:51 +00:00
bf637e0bfe
- Upgraded com.amazonaws from 1.12.733 to 1.12.742 - Upgraded software.amazon.awssdk from 2.25.63 to 2.26.1 - Upgraded com.box SDK from 4.9.1 to 4.10.0 - Upgraded commons-net from 3.11.0 to 3.11.1 - Upgraded io.dropwizard.metrics from 4.2.25 to 4.2.26 - Upgraded Netty from 4.1.110.Final to 4.1.111.Final - Upgraded Commons Configuration2 from 2.10.1 to 2.11.0 - Upgraded Lucene from 9.10.0 to 9.11.0 - Upgraded org.checkerframework from 3.43.0 to 3.44.0 - Upgraded org.eclipse.jdt ecj from 3.37.0 to 3.38.0 - Upgraded Jetty from 12.0.9 to 12.0.10 - Upgraded Elasticsearch Client from 8.13.4 to 8.14.1 - Upgraded Spring Framework from 6.1.8 to 6.1.9 - Upgraded com.slack.api from 1.39.3 to 1.40.0 - Upgraded io.projectreactor from 3.6.6 to 3.6.7 - Upgraded JGit from 6.9.0.202403050737-r to 6.10.0.202406032230-r - Upgraded Flyway from 10.13.0 to 10.15.0 - Upgraded Spring Integration from 6.2.5 to 6.3.0 This closes #8966 Signed-off-by: David Handermann <exceptionfactory@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.0.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.26</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
<artifactId>metrics-core</artifactId>
|
|
<version>4.2.26</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|