2015-03-22 23:13:07 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-05-28 20:14:09 -04:00
|
|
|
<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">
|
2014-12-08 15:22:14 -05:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2024-04-03 20:34:24 -04:00
|
|
|
<artifactId>nifi-standard-shared-bom</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2023-10-25 13:22:26 -04:00
|
|
|
<relativePath>../nifi-standard-shared-bundle/nifi-standard-shared-bom</relativePath>
|
2014-12-08 15:22:14 -05:00
|
|
|
</parent>
|
2015-01-21 01:47:48 -05:00
|
|
|
<artifactId>nifi-standard-bundle</artifactId>
|
2014-12-08 15:22:14 -05:00
|
|
|
<packaging>pom</packaging>
|
2015-01-21 01:47:48 -05:00
|
|
|
<description>NiFi Standard Extensions Bundle</description>
|
2014-12-08 15:22:14 -05:00
|
|
|
<modules>
|
2015-01-21 01:47:48 -05:00
|
|
|
<module>nifi-standard-processors</module>
|
|
|
|
<module>nifi-standard-reporting-tasks</module>
|
2021-03-17 14:24:44 -04:00
|
|
|
<module>nifi-standard-rules</module>
|
2021-08-31 16:29:17 -04:00
|
|
|
<module>nifi-standard-parameter-providers</module>
|
2015-01-21 01:47:48 -05:00
|
|
|
<module>nifi-standard-nar</module>
|
2024-09-06 09:12:38 -04:00
|
|
|
<module>nifi-standard-content-viewer</module>
|
|
|
|
<module>nifi-standard-content-viewer-nar</module>
|
2015-06-17 22:43:33 -04:00
|
|
|
</modules>
|
2018-03-09 15:00:29 -05:00
|
|
|
<properties>
|
2024-10-17 10:20:50 -04:00
|
|
|
<org.apache.sshd.version>2.14.0</org.apache.sshd.version>
|
2024-10-21 10:00:05 -04:00
|
|
|
<tika.version>3.0.0</tika.version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</properties>
|
2014-12-08 15:22:14 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2015-01-21 01:47:48 -05:00
|
|
|
<artifactId>nifi-standard-processors</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2015-01-21 01:47:48 -05:00
|
|
|
</dependency>
|
2018-10-26 15:41:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-expression-language</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2018-10-26 15:41:26 -04:00
|
|
|
</dependency>
|
2014-12-08 15:22:14 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2015-01-21 01:47:48 -05:00
|
|
|
<artifactId>nifi-standard-reporting-tasks</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-12-08 15:22:14 -05:00
|
|
|
</dependency>
|
2021-03-17 14:24:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-rules</artifactId>
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2021-08-31 16:29:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-parameter-providers</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2021-08-31 16:29:17 -04:00
|
|
|
</dependency>
|
2018-03-09 15:00:29 -05:00
|
|
|
<dependency>
|
2019-09-06 15:12:38 -04:00
|
|
|
<groupId>com.hierynomus</groupId>
|
|
|
|
<artifactId>sshj</artifactId>
|
2024-09-14 15:59:29 -04:00
|
|
|
<version>0.39.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-06-22 13:44:34 -04:00
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
2024-05-04 12:29:50 -04:00
|
|
|
<version>2.1.3</version>
|
2021-06-22 13:44:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail-api</artifactId>
|
2024-05-04 12:29:50 -04:00
|
|
|
<version>2.1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.angus</groupId>
|
|
|
|
<artifactId>angus-mail</artifactId>
|
|
|
|
<version>2.0.3</version>
|
2021-06-22 13:44:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail</artifactId>
|
|
|
|
<version>2.0.1</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.jponge</groupId>
|
|
|
|
<artifactId>lzma-java</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
2022-09-17 07:13:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aayushatharva.brotli4j</groupId>
|
|
|
|
<artifactId>brotli4j</artifactId>
|
2024-08-28 11:35:16 -04:00
|
|
|
<version>1.17.0</version>
|
2022-09-17 07:13:30 -04:00
|
|
|
</dependency>
|
2018-03-09 15:00:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.tukaani</groupId>
|
|
|
|
<artifactId>xz</artifactId>
|
2024-08-09 14:14:01 -04:00
|
|
|
<version>1.10</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
2024-07-19 16:54:26 -04:00
|
|
|
<version>12.5</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.jms</groupId>
|
|
|
|
<artifactId>javax.jms-api</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
2023-07-16 14:06:13 -04:00
|
|
|
<version>${derby.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbytools</artifactId>
|
|
|
|
<version>${derby.version}</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
<artifactId>tika-core</artifactId>
|
2023-01-26 11:30:11 -05:00
|
|
|
<version>${tika.version}</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-05-24 17:17:17 -04:00
|
|
|
<groupId>io.github.rburgst</groupId>
|
2018-03-09 15:00:29 -05:00
|
|
|
<artifactId>okhttp-digest</artifactId>
|
2024-05-07 19:38:15 -04:00
|
|
|
<version>3.1.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-17 22:49:15 -04:00
|
|
|
<groupId>at.favre.lib</groupId>
|
|
|
|
<artifactId>bcrypt</artifactId>
|
2023-04-08 11:52:37 -04:00
|
|
|
<version>0.10.2</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2022-01-27 18:37:12 -05:00
|
|
|
<version>${h2.version}</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockftpserver</groupId>
|
|
|
|
<artifactId>MockFtpServer</artifactId>
|
2024-05-17 15:55:12 -04:00
|
|
|
<version>3.2.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.supercsv</groupId>
|
|
|
|
<artifactId>super-csv</artifactId>
|
|
|
|
<version>2.4.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fluenda</groupId>
|
2021-10-11 06:27:52 -04:00
|
|
|
<artifactId>parcefone</artifactId>
|
2024-05-19 08:34:22 -04:00
|
|
|
<version>3.0.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-05-18 10:46:04 -04:00
|
|
|
<groupId>com.github.wnameless.json</groupId>
|
2018-03-09 15:00:29 -05:00
|
|
|
<artifactId>json-flattener</artifactId>
|
2024-10-17 10:20:50 -04:00
|
|
|
<version>0.17.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-05-08 15:53:20 -04:00
|
|
|
<groupId>io.krakens</groupId>
|
|
|
|
<artifactId>java-grok</artifactId>
|
|
|
|
<version>0.1.9</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite</groupId>
|
|
|
|
<artifactId>calcite-core</artifactId>
|
2024-10-15 23:35:07 -04:00
|
|
|
<version>1.38.0</version>
|
2021-10-04 21:10:20 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2021-12-15 17:47:44 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2021-10-04 21:10:20 -04:00
|
|
|
</exclusions>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
2023-10-25 16:02:47 -04:00
|
|
|
<!-- Override Commons Compiler 3.1.9 from calcite-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.janino</groupId>
|
|
|
|
<artifactId>commons-compiler</artifactId>
|
2024-05-04 12:29:50 -04:00
|
|
|
<version>3.1.12</version>
|
2023-10-25 16:02:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.janino</groupId>
|
|
|
|
<artifactId>janino</artifactId>
|
2024-05-04 12:29:50 -04:00
|
|
|
<version>3.1.12</version>
|
2023-10-25 16:02:47 -04:00
|
|
|
</dependency>
|
2022-01-07 12:49:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-core</artifactId>
|
2022-12-01 13:40:54 -05:00
|
|
|
<version>${org.apache.sshd.version}</version>
|
2022-01-07 12:49:33 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-sftp</artifactId>
|
2022-12-01 13:40:54 -05:00
|
|
|
<version>${org.apache.sshd.version}</version>
|
2022-01-07 12:49:33 -05:00
|
|
|
</dependency>
|
2022-02-02 16:58:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2024-10-17 10:20:50 -04:00
|
|
|
<version>33.3.1-jre</version>
|
2022-02-02 16:58:17 -05:00
|
|
|
</dependency>
|
2022-08-26 07:27:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.networknt</groupId>
|
|
|
|
<artifactId>json-schema-validator</artifactId>
|
2024-10-02 19:13:08 -04:00
|
|
|
<version>1.5.2</version>
|
2023-04-07 10:51:48 -04:00
|
|
|
</dependency>
|
2014-12-08 15:22:14 -05:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
</project>
|