mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 18:48:51 +00:00
- Upgraded SLF4J from 2.0.7 to 2.0.9 - Upgraded Logback from 1.3.8 to 1.3.11 - Upgraded Testcontainers from 1.18.3 to 1.19.0 - Upgraded Fabric8 Kubernetes from 6.5.1 to 6.8.1 - Upgraded AspectJ from 1.9.19 to 1.9.20.1 - Upgraded Caffeine from 3.1.6 to 3.1.8 - Upgraded AWS SDK from 2.20.103 to 2.20.148 - Upgraded Guava from 32.0.1 to 32.1.2 - Upgraded Nimbus JOSE JWT from 9.31 to 9.33 - Upgraded Apache Tika from 2.8.0 to 2.9.0 - Upgraded gRPC from 1.57.2 to 1.58.0 - Upgraded Google Libraries from 26.17.0 to 26.22.0 - Upgraded Azure SDK from 1.2.13 to 1.2.16 This closes #7733 Signed-off-by: David Handermann <exceptionfactory@apache.org>
95 lines
3.8 KiB
XML
95 lines
3.8 KiB
XML
<!--
|
|
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-nar-bundles</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nifi-spark-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>nifi-livy-nar</module>
|
|
<module>nifi-livy-controller-service-api-nar</module>
|
|
<module>nifi-livy-controller-service-api</module>
|
|
<module>nifi-livy-controller-service</module>
|
|
<module>nifi-livy-processors</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
<artifactId>jettison</artifactId>
|
|
<version>1.5.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>1.10</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-client</artifactId>
|
|
<version>1.19.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty</artifactId>
|
|
<version>${netty.3.version}</version>
|
|
</dependency>
|
|
<!-- Override nimbus-jose-jwt 9.8.1 from hadoop-auth -->
|
|
<dependency>
|
|
<groupId>com.nimbusds</groupId>
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
<version>9.33</version>
|
|
</dependency>
|
|
<!-- Override zookeeper -->
|
|
<dependency>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>${zookeeper.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-utils</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|