2014-12-08 15:22:14 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-08-14 13:35:58 -04: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
|
2017-11-28 15:48:20 -05:00
|
|
|
language governing permissions and limitations under the License. -->
|
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">
|
2015-04-22 14:50:03 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>nifi-assembly</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2015-07-16 12:35:37 -04:00
|
|
|
<description>This is the assembly Apache NiFi</description>
|
2015-04-22 14:50:03 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-11-17 14:38:26 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>extract-extension-manifests</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<includeTypes>nar</includeTypes>
|
|
|
|
<includes>**/extension-manifest.xml</includes>
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
<outputDirectory>${project.build.directory}/extension-manifests</outputDirectory>
|
|
|
|
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
|
|
|
|
<stripClassifier>true</stripClassifier>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<silent>true</silent>
|
|
|
|
<fileMappers>
|
|
|
|
<org.codehaus.plexus.components.io.filemappers.FlattenFileMapper />
|
|
|
|
</fileMappers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-04-22 14:50:03 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make shared resource</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
2021-11-17 14:38:26 -05:00
|
|
|
<finalName>nifi-${project.version}</finalName>
|
|
|
|
<attach>false</attach>
|
2015-07-02 17:44:03 -04:00
|
|
|
<archiverConfig>
|
|
|
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
|
|
|
<directoryMode>0775</directoryMode>
|
|
|
|
<fileMode>0664</fileMode>
|
|
|
|
</archiverConfig>
|
2015-04-22 14:50:03 -04:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/dependencies.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
2017-12-03 17:45:03 -05:00
|
|
|
<formats>
|
|
|
|
<format>dir</format>
|
|
|
|
<format>zip</format>
|
|
|
|
</formats>
|
2015-04-22 14:50:03 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
2021-11-17 14:38:26 -05:00
|
|
|
<execution>
|
|
|
|
<id>make-extension-manifest-assembly</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<finalName>nifi-${project.version}</finalName>
|
|
|
|
<attach>true</attach>
|
|
|
|
<archiverConfig>
|
|
|
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
|
|
|
<directoryMode>0775</directoryMode>
|
|
|
|
<fileMode>0664</fileMode>
|
|
|
|
</archiverConfig>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/extension-manifests.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
|
|
|
<formats>
|
|
|
|
<format>zip</format>
|
|
|
|
</formats>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2015-04-22 14:50:03 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2017-04-17 15:29:44 -04:00
|
|
|
<dependency> <!-- handling this explicitly Must be in root lib -->
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- handling this explicitly Must be in root lib -->
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
2016-07-13 09:28:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-framework-api</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-07-13 09:28:19 -04:00
|
|
|
</dependency>
|
2020-10-07 09:12:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-server-api</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-07 09:12:16 -04:00
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-runtime</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-bootstrap</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
2021-05-07 14:35:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-bootstrap-utils</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-05-07 14:35:41 -04:00
|
|
|
</dependency>
|
2022-04-19 11:08:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-property-utils</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-04-19 11:08:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-property-protection-api</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-04-19 11:08:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-property-protection-factory</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-04-19 11:08:04 -04:00
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-resources</artifactId>
|
|
|
|
<classifier>resources</classifier>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
<type>zip</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-docs</artifactId>
|
|
|
|
<classifier>resources</classifier>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
<type>zip</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-framework-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2020-10-07 09:12:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-server-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-07 09:12:16 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-provenance-repository-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-distributed-cache-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-08-16 06:03:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-datadog-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-08-16 06:03:04 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jetty-bundle</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-update-attribute-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2020-10-08 09:12:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-stateless-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-08 09:12:00 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-stateless-bootstrap</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-08 09:12:00 -04:00
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-libraries-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-12-03 14:36:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kafka-1-0-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-12-03 14:36:10 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-08-14 13:35:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kafka-2-0-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-07-02 06:37:25 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2020-08-07 12:56:25 -04:00
|
|
|
<artifactId>nifi-kafka-2-6-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-08-14 13:35:58 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-06-22 14:01:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-confluent-platform-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-06-22 14:01:32 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-http-context-map-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-11-13 15:01:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-html-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-11-13 15:01:10 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-05-10 13:09:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-lookup-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-05-10 13:09:45 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-08-24 11:51:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-poi-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-08-24 11:51:46 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-06-06 21:25:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kudu-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-06-06 21:25:41 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-10-07 13:33:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ldap-iaa-providers-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-10-07 13:33:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-03-11 18:11:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-iaa-providers-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-03-11 18:11:19 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2021-05-11 13:18:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-single-user-iaa-providers-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-05-11 13:18:08 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-05-20 09:53:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dbcp-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-05-20 09:53:36 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2020-03-12 15:57:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-dbcp-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-03-12 15:57:11 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-04-02 11:11:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mongodb-client-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-04-02 11:11:01 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-05-19 08:09:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mongodb-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-05-19 08:09:02 -04:00
|
|
|
<type>nar</type>
|
2017-11-28 15:48:20 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mongodb-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-11-28 15:48:20 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-03-22 18:59:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-solr-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-03-22 18:59:22 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-social-media-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hl7-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-12-09 05:15:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ccda-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-12-09 05:15:19 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-language-translation-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-06-03 20:40:56 -04:00
|
|
|
<artifactId>nifi-enrich-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-07-19 15:32:17 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2021-12-10 16:57:23 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-geohash-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-12-10 16:57:23 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-07-19 15:32:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-aws-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-10-19 11:23:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-aws-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-10-19 11:23:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-08-17 08:53:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ambari-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-06-02 21:51:49 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-06-25 18:58:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-rethinkdb-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-06-25 18:58:37 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-02-26 08:19:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-prometheus-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-02-26 08:19:13 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-06-27 08:42:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-network-processors-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-06-27 08:42:00 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-08-19 16:53:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-avro-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-08-19 16:53:59 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-09-25 13:46:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-couchbase-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-09-25 13:46:37 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-01-03 22:11:01 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-couchbase-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-01-03 22:11:01 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-10-02 17:22:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hbase-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-10-02 17:22:29 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-09-22 10:45:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-riemann-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-09-22 10:45:10 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-10-02 17:22:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hbase_1_1_2-client-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-10-02 17:22:29 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-01-09 11:02:14 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hbase_2-client-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-01-09 11:02:14 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-11-11 23:06:04 -05:00
|
|
|
<dependency>
|
2020-03-28 10:57:11 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-oauth2-provider-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-03-28 10:57:11 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-11-11 23:06:04 -05:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-azure-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-11-11 23:06:04 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-11 12:40:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-azure-record-sink-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-09-13 16:10:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-azure-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-09-13 16:10:09 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-02-01 19:13:30 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-scripting-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-02-01 19:13:30 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-04-02 03:55:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-groovyx-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-04-02 03:55:22 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-12-29 13:43:54 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-elasticsearch-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2015-12-29 13:43:54 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-03-27 11:56:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-elasticsearch-client-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-03-27 11:56:35 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-03-03 17:32:42 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-elasticsearch-client-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-03-03 17:32:42 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-elasticsearch-restapi-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-03-03 17:32:42 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-04-23 19:46:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cybersecurity-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-04-23 19:46:40 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-06-18 08:23:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-email-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-06-18 08:23:55 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-01-31 13:20:14 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-amqp-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-11-02 09:51:47 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-splunk-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-01-31 13:20:14 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-01-26 09:21:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jms-cf-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-01-26 09:21:46 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jms-processors-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-01-26 09:21:46 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-03-16 13:19:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cassandra-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-03-16 13:19:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-10-21 13:41:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cassandra-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-10-21 13:41:07 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cassandra-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-10-21 13:41:07 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-03-02 13:35:26 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-spring-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-03-02 13:35:26 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-01-20 10:04:48 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-registry-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-01-20 10:04:48 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-11-02 09:51:47 -04:00
|
|
|
<dependency>
|
2016-05-12 09:59:27 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-site-to-site-reporting-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-05-12 09:59:27 -04:00
|
|
|
<type>nar</type>
|
2016-11-02 09:51:47 -04:00
|
|
|
</dependency>
|
2016-07-11 14:57:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-07-11 14:57:00 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-04-26 11:35:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mqtt-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-11-02 09:51:47 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-02-28 04:12:02 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-snmp-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-02-28 04:12:02 -05:00
|
|
|
<type>nar</type>
|
2016-04-26 11:35:54 -04:00
|
|
|
</dependency>
|
2016-05-27 10:56:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-evtx-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-05-27 10:56:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-03-10 12:17:09 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-slack-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-03-30 05:20:23 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-smb-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-03-10 12:17:09 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-06-20 09:43:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-smb-client-api-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-smb-smbj-client-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-06-07 08:57:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-windows-event-log-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-06-07 08:57:24 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-10-17 21:43:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-websocket-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-10-17 21:43:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-websocket-services-jetty-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-10-17 21:43:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-websocket-processors-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-10-17 21:43:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-01-25 13:13:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-tcp-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-01-25 13:13:53 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-02-06 17:36:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-gcp-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-02-06 17:36:32 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-01-03 00:09:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-gcp-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-01-03 00:09:46 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-06-14 12:31:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-12-12 22:51:36 -05:00
|
|
|
<artifactId>nifi-stateful-analysis-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-12-12 22:51:36 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-03-23 18:43:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cdc-mysql-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-03-23 18:43:04 -04:00
|
|
|
<type>nar</type>
|
2017-04-12 18:25:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-parquet-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-04-12 18:25:31 -04:00
|
|
|
<type>nar</type>
|
2017-03-23 18:43:04 -04:00
|
|
|
</dependency>
|
2021-02-18 09:07:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-pgp-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-02-18 09:07:07 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-pgp-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-02-18 09:07:07 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-pgp-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-02-18 09:07:07 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-04-26 13:58:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hwx-schema-registry-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-04-26 13:58:00 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-06-12 15:53:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-redis-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-06-12 15:53:20 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-redis-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-06-12 15:53:20 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2020-09-02 10:47:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hazelcast-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-09-02 10:47:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hazelcast-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-09-02 10:47:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-09-24 15:24:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-metrics-reporter-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-09-24 15:24:09 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-metrics-reporting-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-09-24 15:24:09 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-02-26 15:20:26 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-credentials-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-02-26 15:20:26 -05:00
|
|
|
<type>nar</type>
|
2021-07-30 10:51:16 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-user-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-07-30 10:51:16 -04:00
|
|
|
<type>nar</type>
|
2018-02-26 15:20:26 -05:00
|
|
|
</dependency>
|
2018-05-15 01:52:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-proxy-configuration-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-05-15 01:52:39 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-07-02 09:59:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jolt-record-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-07-02 09:59:40 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2020-02-03 09:45:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-sink-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-02-03 09:45:08 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2021-08-06 13:22:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hashicorp-vault-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-08-06 13:22:01 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2021-09-16 12:42:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-stateless-processor-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2021-09-16 12:42:55 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-02-23 10:07:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-salesforce-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-02-23 10:07:00 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-07-20 00:15:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-web-client-provider-service-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-15 14:26:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hubspot-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-03 08:45:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-processors-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-services-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-services-api-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-07-19 06:23:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-airtable-nar</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-11-15 18:38:02 -05:00
|
|
|
<!-- dependencies for jaxb/activation/annotation for running NiFi on Java 11 -->
|
|
|
|
<!-- TODO: remove these once minimum Java version is 11 -->
|
|
|
|
<dependency>
|
2021-08-19 16:42:13 -04:00
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
<version>${jakarta.xml.bind-api.version}</version>
|
2018-11-15 18:38:02 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-08-19 16:42:13 -04:00
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
|
<version>${jaxb.runtime.version}</version>
|
2018-11-15 18:38:02 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
2022-07-11 05:19:49 -04:00
|
|
|
<version>${javax.annotation-api.version}</version>
|
2018-11-15 18:38:02 -05:00
|
|
|
</dependency>
|
2020-09-21 11:44:42 -04:00
|
|
|
<!-- AspectJ library needed by the Java Agent used for native library loading (see bootstrap.conf) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependencies>
|
|
|
|
<profiles>
|
2019-08-24 07:44:54 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-graph</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-graph-client-service-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-08-24 07:44:54 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-neo4j-cypher-service-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-08-24 07:44:54 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-graph-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-08-24 07:44:54 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-11-11 18:32:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-other-graph-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-11-11 18:32:10 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-08-24 07:44:54 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2017-11-28 15:48:20 -05:00
|
|
|
<profile>
|
2017-12-05 12:41:16 -05:00
|
|
|
<id>include-grpc</id>
|
|
|
|
<!-- This profile handles the inclusion of grpc artifacts. They are notoriously
|
|
|
|
environment specific in terms of build such as not working in os/arch=ppc64le
|
|
|
|
or in Centos6 due to requiring a newer version of GLIBC. -->
|
2017-11-28 15:48:20 -05:00
|
|
|
<activation>
|
2017-12-05 12:41:16 -05:00
|
|
|
<activeByDefault>false</activeByDefault>
|
2017-11-28 15:48:20 -05:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-grpc-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-11-28 15:48:20 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2017-12-18 09:28:50 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-atlas</id>
|
|
|
|
<!-- This profile handles the inclusion of atlas artifacts. The NAR
|
|
|
|
is quite large and makes the resultant binary distribution significantly
|
|
|
|
larger (60+ MB). -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-atlas-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2017-12-18 09:28:50 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2022-06-09 13:58:18 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-hive</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-06-09 13:58:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-06-09 13:58:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-01-22 13:34:35 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-hive1_1</id>
|
|
|
|
<!-- This profile handles the inclusion of Hive 1.1.x artifacts. The NAR
|
|
|
|
is quite large and makes the resultant binary distribution significantly
|
|
|
|
larger (150+ MB). -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive_1_1-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-01-22 13:34:35 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-06-09 13:58:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-06-09 13:58:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-01-22 13:34:35 -05:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2018-06-04 11:37:48 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-hive3</id>
|
|
|
|
<!-- This profile handles the inclusion of Hive 3 artifacts. The NAR
|
|
|
|
is quite large and makes the resultant binary distribution significantly
|
|
|
|
larger (275+ MB). -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive3-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2018-06-04 11:37:48 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-06-09 13:58:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hive-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-06-09 13:58:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2018-06-04 11:37:48 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2022-02-01 12:34:31 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-media</id>
|
|
|
|
<!-- This profile includes the NiFi Media Bundle which is a large package that exposes Apache Tika functionality
|
|
|
|
through multiple processors. It is not included with the convenience binary due to its size. -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-media-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-02-01 12:34:31 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-10-16 10:49:37 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-rules</id>
|
|
|
|
<!-- This profile handles includes of rules related artifacts. -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-easyrules-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-10-16 10:49:37 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-10-29 16:21:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-rules-action-handler-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-10-29 16:21:45 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-10-16 10:49:37 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-10-22 08:56:42 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-sql-reporting</id>
|
|
|
|
<!-- This profile handles the inclusion of nifi-sql-reporting artifacts. -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-sql-reporting-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-10-22 08:56:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-11-05 14:25:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-easyrules-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-11-05 14:25:58 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-rules-action-handler-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-11-05 14:25:58 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2019-10-22 08:56:42 -04:00
|
|
|
</dependencies>
|
2019-12-11 11:58:56 -05:00
|
|
|
</profile>
|
2020-10-07 09:12:16 -04:00
|
|
|
<profile>
|
|
|
|
<id>headless</id>
|
|
|
|
<!-- This profile excludes the nifi-server artifacts, such as the Web/UI NAR(s) and instead uses the nifi-headless-server-nar. -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-server-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-07 09:12:16 -04:00
|
|
|
<type>nar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-headless-server-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2020-10-07 09:12:16 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-12-11 11:58:56 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-accumulo</id>
|
|
|
|
<!-- This profile handles the inclusion of nifi-accumulo artifacts. -->
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-accumulo-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-12-11 11:58:56 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-accumulo-services-api-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-12-11 11:58:56 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-accumulo-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-12-11 11:58:56 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-10-22 08:56:42 -04:00
|
|
|
</profile>
|
2022-01-20 17:32:16 -05:00
|
|
|
<profile>
|
|
|
|
<id>targz</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make shared resource</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<finalName>nifi-${project.version}</finalName>
|
|
|
|
<attach>false</attach>
|
|
|
|
<archiverConfig>
|
|
|
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
|
|
|
<directoryMode>0775</directoryMode>
|
|
|
|
<fileMode>0664</fileMode>
|
|
|
|
</archiverConfig>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/dependencies.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
|
|
|
<formats>
|
|
|
|
<format>tar.gz</format>
|
|
|
|
</formats>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-04-22 14:50:03 -04:00
|
|
|
<profile>
|
|
|
|
<id>rpm</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
2016-02-09 23:44:55 -05:00
|
|
|
<properties>
|
|
|
|
<nifi.run.as>nifi</nifi.run.as>
|
|
|
|
</properties>
|
2015-04-22 14:50:03 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-shared-resources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
|
|
|
|
<includeArtifactIds>nifi-resources</includeArtifactIds>
|
|
|
|
<includeGroupIds>org.apache.nifi</includeGroupIds>
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-docs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/generated-docs</outputDirectory>
|
|
|
|
<includeArtifactIds>nifi-docs</includeArtifactIds>
|
|
|
|
<includeGroupIds>org.apache.nifi</includeGroupIds>
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
2016-01-31 01:54:10 -05:00
|
|
|
<excludes>LICENSE,NOTICE</excludes>
|
2015-04-22 14:50:03 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>rpm-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2016-01-31 01:54:10 -05:00
|
|
|
<name>nifi</name>
|
2015-07-16 12:35:37 -04:00
|
|
|
<summary>Apache NiFi</summary>
|
2017-05-05 14:10:14 -04:00
|
|
|
<description>Apache NiFi is dataflow system based on the Flow-Based Programming concepts.</description>
|
|
|
|
<license>Apache License, Version 2.0 and others (see included LICENSE file)</license>
|
2019-05-28 20:14:09 -04:00
|
|
|
<url>https://nifi.apache.org</url>
|
2015-04-22 14:50:03 -04:00
|
|
|
<group>Utilities</group>
|
|
|
|
<prefix>/opt/nifi</prefix>
|
|
|
|
<defineStatements>
|
2017-05-05 14:10:14 -04:00
|
|
|
<defineStatement>_use_internal_dependency_generator 0</defineStatement>
|
2015-04-22 14:50:03 -04:00
|
|
|
</defineStatements>
|
|
|
|
<defaultDirmode>750</defaultDirmode>
|
|
|
|
<defaultFilemode>640</defaultFilemode>
|
2016-02-04 03:40:26 -05:00
|
|
|
<defaultUsername>nifi</defaultUsername>
|
|
|
|
<defaultGroupname>nifi</defaultGroupname>
|
2017-01-16 11:44:55 -05:00
|
|
|
<!-- This allows the stanza to produce bootstrap.conf that is pre-configured with run.as=nifi
|
|
|
|
given the uid is created by the preinstallScriptlet below. Meanwhile, normal zip and tar.gz
|
|
|
|
ship without this particular property set -->
|
|
|
|
<installScriptlet>
|
|
|
|
<!-- It is important to note because of the way the plugin calls the command, the sed backup
|
|
|
|
parameter -i and the sed command do not beed to be wrapped by single or double quotes.
|
|
|
|
Also note maven properties are processed before RPM variables and before sed commands -->
|
|
|
|
<script>sed -i s/^run\.as=$/run\.as=${nifi.run.as}/ $RPM_BUILD_ROOT/opt/nifi/nifi-${project.version}/conf/bootstrap.conf</script>
|
|
|
|
</installScriptlet>
|
2016-02-09 23:44:55 -05:00
|
|
|
<preinstallScriptlet>
|
2017-05-05 14:10:14 -04:00
|
|
|
<script>/usr/bin/getent group nifi >/dev/null || /usr/sbin/groupadd -r nifi; /usr/bin/getent passwd nifi >/dev/null || /usr/sbin/useradd -r -g nifi -d /opt/nifi -s /sbin/nologin -c "NiFi System User" nifi</script>
|
2016-02-09 23:44:55 -05:00
|
|
|
</preinstallScriptlet>
|
2015-04-22 14:50:03 -04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>build-bin-rpm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>attached-rpm</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<classifier>bin</classifier>
|
|
|
|
<provides>
|
|
|
|
<provide>nifi</provide>
|
|
|
|
</provides>
|
|
|
|
<mappings>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}</directory>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}</directory>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>./LICENSE</location>
|
|
|
|
</source>
|
|
|
|
<source>
|
|
|
|
<location>./NOTICE</location>
|
|
|
|
</source>
|
|
|
|
<source>
|
|
|
|
<location>./README.md</location>
|
|
|
|
<destination>README</destination>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
2016-02-04 03:40:26 -05:00
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi</directory>
|
|
|
|
</mapping>
|
2015-04-22 14:50:03 -04:00
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}/bin</directory>
|
|
|
|
<filemode>750</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.build.directory}/generated-resources/bin/nifi.sh</location>
|
|
|
|
<destination>nifi.sh</destination>
|
|
|
|
<filter>true</filter>
|
|
|
|
</source>
|
2016-09-22 11:15:21 -04:00
|
|
|
<source>
|
|
|
|
<location>${project.build.directory}/generated-resources/bin/nifi-env.sh</location>
|
|
|
|
<destination>nifi-env.sh</destination>
|
|
|
|
<filter>true</filter>
|
|
|
|
</source>
|
2015-04-22 14:50:03 -04:00
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}/conf</directory>
|
|
|
|
<configuration>true</configuration>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.build.directory}/generated-resources/conf</location>
|
|
|
|
<filter>true</filter>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
2016-02-04 03:40:26 -05:00
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}/lib</directory>
|
2022-01-04 08:04:19 -05:00
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.build.directory}/nifi-${project.version}-bin/nifi-${project.version}/lib</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
2020-09-21 11:44:42 -04:00
|
|
|
</mapping>
|
2015-04-22 14:50:03 -04:00
|
|
|
<mapping>
|
|
|
|
<directory>/opt/nifi/nifi-${project.version}/docs</directory>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.build.directory}/generated-docs</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
</mappings>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2016-07-26 10:13:42 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-ranger</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make shared resource</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
2021-11-17 14:38:26 -05:00
|
|
|
<finalName>nifi-${project.version}</finalName>
|
|
|
|
<attach>false</attach>
|
2016-07-26 10:13:42 -04:00
|
|
|
<archiverConfig>
|
|
|
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
|
|
|
<directoryMode>0775</directoryMode>
|
|
|
|
<fileMode>0664</fileMode>
|
|
|
|
</archiverConfig>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/ranger.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ranger-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-07-26 10:13:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ranger-resources</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2016-07-26 10:13:42 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-09-06 06:27:04 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-asn1</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-asn1-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2019-09-06 06:27:04 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2022-01-20 13:38:09 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-snowflake</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-snowflake-services-nar</artifactId>
|
2022-07-27 16:24:09 -04:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2022-01-20 13:38:09 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2017-02-03 06:51:55 -05:00
|
|
|
<profile>
|
2017-12-03 17:45:03 -05:00
|
|
|
<id>avoid-archive-formats</id>
|
2017-02-03 06:51:55 -05:00
|
|
|
<activation>
|
2017-12-03 17:45:03 -05:00
|
|
|
<property>
|
|
|
|
<name>dir-only</name>
|
|
|
|
</property>
|
2017-02-03 06:51:55 -05:00
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make shared resource</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
2021-11-17 14:38:26 -05:00
|
|
|
<finalName>nifi-${project.version}</finalName>
|
|
|
|
<attach>false</attach>
|
2017-12-03 17:45:03 -05:00
|
|
|
<archiverConfig>
|
|
|
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
|
|
|
<directoryMode>0775</directoryMode>
|
|
|
|
<fileMode>0664</fileMode>
|
|
|
|
</archiverConfig>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/dependencies.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
2017-02-03 06:51:55 -05:00
|
|
|
<formats>
|
|
|
|
<format>dir</format>
|
|
|
|
</formats>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2021-12-06 17:05:03 -05:00
|
|
|
<profile>
|
|
|
|
<id>skip-nifi-bin-assembly</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>skip-nifi-bin-assembly</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make shared resource</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-04-22 14:50:03 -04:00
|
|
|
</profiles>
|
2014-12-08 15:22:14 -05:00
|
|
|
</project>
|