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>
|
2015-01-21 01:47:48 -05:00
|
|
|
<artifactId>nifi-nar-bundles</artifactId>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.0-SNAPSHOT</version>
|
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-08-31 16:29:17 -04:00
|
|
|
<module>nifi-standard-parameter-providers</module>
|
2015-03-22 23:13:07 -04:00
|
|
|
<module>nifi-standard-content-viewer</module>
|
2015-01-21 01:47:48 -05:00
|
|
|
<module>nifi-standard-nar</module>
|
2016-06-08 00:53:38 -04:00
|
|
|
<module>nifi-jolt-transform-json-ui</module>
|
|
|
|
<module>nifi-standard-utils</module>
|
2015-06-17 22:43:33 -04:00
|
|
|
</modules>
|
2018-03-09 15:00:29 -05:00
|
|
|
<properties>
|
|
|
|
<yammer.metrics.version>2.2.0</yammer.metrics.version>
|
2022-08-26 16:37:45 -04:00
|
|
|
<jolt.version>0.1.7</jolt.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>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.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>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.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>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.0-SNAPSHOT</version>
|
2014-12-08 15:22:14 -05:00
|
|
|
</dependency>
|
2021-08-31 16:29:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-parameter-providers</artifactId>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.0-SNAPSHOT</version>
|
2021-08-31 16:29:17 -04:00
|
|
|
</dependency>
|
2015-03-22 23:13:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-content-viewer</artifactId>
|
|
|
|
<type>war</type>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.0-SNAPSHOT</version>
|
2015-03-22 23:13:07 -04:00
|
|
|
</dependency>
|
2016-06-08 00:53:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jolt-transform-json-ui</artifactId>
|
|
|
|
<type>war</type>
|
2022-11-22 21:22:47 -05:00
|
|
|
<version>1.20.0-SNAPSHOT</version>
|
2016-06-08 00:53:38 -04:00
|
|
|
</dependency>
|
2018-03-09 15:00:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bazaarvoice.jolt</groupId>
|
|
|
|
<artifactId>jolt-core</artifactId>
|
|
|
|
<version>${jolt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.bazaarvoice.jolt</groupId>
|
|
|
|
<artifactId>json-utils</artifactId>
|
|
|
|
<version>${jolt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.yammer.metrics</groupId>
|
|
|
|
<artifactId>metrics-ganglia</artifactId>
|
|
|
|
<version>${yammer.metrics.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
<version>3.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2021-08-02 15:03:27 -04:00
|
|
|
<version>1.21</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-09-06 15:12:38 -04:00
|
|
|
<groupId>com.hierynomus</groupId>
|
|
|
|
<artifactId>sshj</artifactId>
|
2022-09-09 13:06:01 -04:00
|
|
|
<version>0.34.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>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</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>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</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-08-11 12:36:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.luben</groupId>
|
|
|
|
<artifactId>zstd-jni</artifactId>
|
|
|
|
<version>1.5.2-3</version>
|
|
|
|
</dependency>
|
2022-09-17 07:13:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aayushatharva.brotli4j</groupId>
|
|
|
|
<artifactId>brotli4j</artifactId>
|
|
|
|
<version>1.8.0</version>
|
|
|
|
</dependency>
|
2018-03-09 15:00:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.tukaani</groupId>
|
|
|
|
<artifactId>xz</artifactId>
|
2018-09-20 23:24:17 -04:00
|
|
|
<version>1.8</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
2021-11-19 14:30:26 -05:00
|
|
|
<version>10.6</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.jms</groupId>
|
|
|
|
<artifactId>javax.jms-api</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-client</artifactId>
|
2021-07-15 17:15:36 -04:00
|
|
|
<version>5.15.15</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-broker</artifactId>
|
2021-03-16 16:33:27 -04:00
|
|
|
<version>5.15.14</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
2021-05-24 08:24:11 -04:00
|
|
|
<version>10.14.2.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
2021-06-07 07:45:20 -04:00
|
|
|
<version>2.6.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
<artifactId>tika-core</artifactId>
|
2022-06-21 09:38:10 -04:00
|
|
|
<version>2.4.1</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>
|
2022-11-18 06:21:33 -05:00
|
|
|
<version>2.7</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>
|
|
|
|
<version>0.9.0</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>
|
|
|
|
<version>2.7.1</version>
|
|
|
|
<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>
|
2021-11-29 12:45:54 -05:00
|
|
|
<version>2.1.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>
|
2022-09-08 15:45:39 -04:00
|
|
|
<version>0.14.0</version>
|
2018-03-09 15:00:29 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.bval</groupId>
|
|
|
|
<artifactId>bval-jsr</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-el-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-annotation_1.2_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jcdi_1.1.spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jpa_2.0.spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.bval</groupId>
|
|
|
|
<artifactId>bval-xstream</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</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>
|
2022-09-10 21:05:26 -04:00
|
|
|
<version>1.32.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>
|
2022-01-07 12:49:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-core</artifactId>
|
|
|
|
<version>2.8.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-sftp</artifactId>
|
|
|
|
<version>2.8.0</version>
|
|
|
|
</dependency>
|
2022-02-02 16:58:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2022-11-18 07:56:31 -05:00
|
|
|
<version>31.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>
|
|
|
|
<version>1.0.73</version>
|
|
|
|
</dependency>
|
2014-12-08 15:22:14 -05:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
</project>
|