mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 01:58:32 +00:00
ch.qos.logback 1.5.7 1.5.8 com.amazonaws 1.12.770 1.12.772 com.github.luben 1.5.6-4 1.5.6-5 commons-io 2.16.1 2.17.0 io.netty 4.1.112.Final 4.1.113.Final org.apache.ant 1.10.14 1.10.15 org.apache.logging.log4j 2.23.1 2.24.0 (why is this here!?) org.eclipse.jetty 12.0.12 12.0.13 org.springframework 6.1.12 6.1.13 org.xerial.snappy 1.1.10.6 1.1.10.7 software.amazon.awssdk 2.27.14 2.28.4 com.google.apis v3-rev20240730-2.0.0 v3-rev20240903-2.0.0 com.slack.api bolt-socket-mode 1.42.0 1.42.1 com.squareup.wire wire-schema-jvm 5.0.0 5.1.0 io.projectreactor (core/test) 3.6.9 3.6.10 net.java.dev.jna (jna/jna-platform) 5.14.0 5.15.0 org.apache.groovy 4.0.22 4.0.23 org.apache.maven maven-artifact 3.9.8 3.9.9 org.eclipse.jgit 6.10.0.202406032230-r 7.0.0.202409031743-r org.flywaydb 10.17.2 10.18.0 org.kosuke 1.324 1.326 org.mongodb 4.11.3 4.11.4 org.neo4j.driver 5.23.0 5.24.0 org.postgresql 42.7.3 42.7.4 org.springframework.boot 3.3.3 3.3.4 org.springframework.integration 6.3.3 6.3.4 org.springframework.retry 2.0.8 2.0.9 Signed-off-by: Joseph Witt <joewitt@apache.org> Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #9280.
60 lines
2.5 KiB
XML
60 lines
2.5 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
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-standard-shared-bom</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<relativePath>../nifi-standard-shared-bundle/nifi-standard-shared-bom</relativePath>
|
|
</parent>
|
|
<artifactId>nifi-groovyx-bundle</artifactId>
|
|
<packaging>pom</packaging>
|
|
<description>NiFi Groovy Extended Processor</description>
|
|
|
|
<properties>
|
|
<ant.version>1.10.15</ant.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>nifi-groovyx-processors</module>
|
|
<module>nifi-groovyx-nar</module>
|
|
</modules>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>${groovy.version}</version>
|
|
<type>pom</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<!-- Override ant from groovy-ant -->
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>${ant.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<!-- Override ant from groovy-ant -->
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-antlr</artifactId>
|
|
<version>${ant.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|