mirror of
https://github.com/apache/nifi.git
synced 2025-02-08 11:05:17 +00:00
- Upgraded Azure SDK BOM from 1.2.17 to 1.2.18 - Upgraded Reactor Netty HTTP from 1.0.34 to 1.0.39 for Azure Identity - Upgraded MSAL4J from 1.13.10 to 1.14.0 - Upgraded Box Java SDK from 4.4.0 to 4.6.1 - Relocated Apache Ant managed versions to bundle parent modules - Added okio-fakefilesystem to managed dependencies - Suppressed vulnerability for Picocli misidentified as LINE library - Added managed dependencies to nifi-code-coverage to avoid false positives due to different parent modules Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #8054.
79 lines
3.2 KiB
XML
79 lines
3.2 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-scripting-bundle</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nifi-scripting-nar</artifactId>
|
|
<packaging>nar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-scripting-processors</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-standard-shared-nar</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<type>nar</type>
|
|
</dependency>
|
|
|
|
<!-- nifi-metrics dependency to include in the NAR for processor to use at runtime -->
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-metrics</artifactId>
|
|
<type>jar</type>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- nifi-avro-record-utils dependency to include in the NAR for processor to use at runtime -->
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-avro-record-utils</artifactId>
|
|
<type>jar</type>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- Groovy dependencies to include in the NAR for processors to use at runtime -->
|
|
<dependency>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<type>pom</type>
|
|
<scope>runtime</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy-test</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy-test-junit5</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-junit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|