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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-09 23:12:29 -05:00
|
|
|
<phase>prepare-package</phase>
|
2021-11-17 14:38:26 -05:00
|
|
|
<configuration>
|
|
|
|
<includeTypes>nar</includeTypes>
|
2022-12-05 17:26:12 -05:00
|
|
|
<includes>**/docs/**</includes>
|
2021-11-17 14:38:26 -05:00
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
<outputDirectory>${project.build.directory}/extension-manifests</outputDirectory>
|
|
|
|
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
|
|
|
|
<stripClassifier>true</stripClassifier>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<silent>true</silent>
|
|
|
|
</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2024-04-27 16:00:23 -04:00
|
|
|
<scope>compile</scope>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
2023-01-19 14:02:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
2024-04-27 16:00:23 -04:00
|
|
|
<scope>compile</scope>
|
2023-01-19 14:02:35 -05:00
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<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>
|
2023-06-23 21:14:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-per-process-group-logging</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-06-23 21:14:34 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2023-12-01 19:08:15 -05:00
|
|
|
<artifactId>nifi-flow-encryptor</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-12-01 19:08:15 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-single-user-utils</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-12-01 19:08:15 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2015-04-22 14:50:03 -04:00
|
|
|
<artifactId>nifi-api</artifactId>
|
|
|
|
</dependency>
|
2016-07-13 09:28:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-framework-api</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2020-10-07 09:12:16 -04:00
|
|
|
</dependency>
|
2024-02-20 16:31:02 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-stateless-api</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-02-20 16:31:02 -05:00
|
|
|
</dependency>
|
2022-09-28 12:51:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-python-framework-api</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-28 12:51:45 -04:00
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-runtime</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2024-04-03 20:34:24 -04:00
|
|
|
<artifactId>nifi-nar-utils</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
</dependency>
|
2022-04-19 11:08:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2024-04-03 20:34:24 -04:00
|
|
|
<artifactId>nifi-bootstrap</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
<type>zip</type>
|
|
|
|
</dependency>
|
2022-09-28 12:51:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-python-framework</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-28 12:51:45 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-python-extension-api</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-28 12:51:45 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-framework-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-28 12:51:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-py4j-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-28 12:51:45 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-services-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-10-25 13:22:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-shared-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-10-25 13:22:26 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-10-19 09:52:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-key-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-10-19 09:52:16 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-12-27 12:01:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-cipher-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-12-27 12:01:58 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-distributed-cache-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-08-16 06:03:04 -04:00
|
|
|
<dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2024-09-06 09:12:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-content-viewer-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-09-06 09:12:38 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-04-22 14:50:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2024-04-03 20:34:24 -04:00
|
|
|
<artifactId>nifi-jetty-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-03-28 17:48:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kafka-service-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-03-28 17:48:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kafka-3-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-03-28 17:48:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kafka-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-03-28 17:48:34 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-04-22 14:50:03 -04: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2016-08-24 11:51:46 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-05-20 09:53:36 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-10-26 23:35:23 -04:00
|
|
|
<dependency>
|
2018-04-02 11:11:01 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mongodb-client-service-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-11-28 15:48:20 -05: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-06-25 18:58:37 -04: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-08-19 16:53:59 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2015-09-22 10:45:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2023-09-21 22:12:54 -04:00
|
|
|
<artifactId>nifi-hl7-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-09-22 10:45:10 -04: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2015-11-11 23:06:04 -05:00
|
|
|
<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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-04-02 03:55:22 -04: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2018-03-03 17:32:42 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2016-06-18 08:23:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-email-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2016-01-26 09:21:46 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2016-11-02 09:51:47 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-09-30 17:22:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-opentelemetry-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-09-30 17:22:46 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-06-20 09:43:33 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-smb-smbj-client-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-06-20 09:43:33 -04:00
|
|
|
<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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2016-10-17 21:43:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-08 04:33:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-workday-processors-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-08 04:33:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2017-02-06 17:36:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-gcp-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-03-23 18:43:04 -04:00
|
|
|
<type>nar</type>
|
2017-04-12 18:25:31 -04:00
|
|
|
</dependency>
|
2021-02-18 09:07:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-pgp-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2021-02-18 09:07:07 -05: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-06-12 15:53:20 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-23 09:33:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-asana-processors-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-23 09:33:29 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-asana-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-23 09:33:29 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-asana-services-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-23 09:33:29 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2020-09-02 10:47:34 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-10-26 23:35:23 -04:00
|
|
|
<dependency>
|
2021-07-30 10:51:16 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-kerberos-user-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-01-15 16:28:52 -05:00
|
|
|
<artifactId>nifi-jolt-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2022-09-09 14:19:46 -04:00
|
|
|
<artifactId>nifi-hashicorp-vault-client-service-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-09 14:19:46 -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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-02-23 10:07:00 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-01 15:51:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-box-services-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-01 15:51:19 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-box-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-01 15:51:19 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-box-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-01 15:51:19 -04: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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-07-20 00:15:57 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-15 14:26:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hubspot-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-15 14:26:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-06 11:10:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-zendesk-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-06 11:10:18 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-08-24 12:37:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-zendesk-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-08-24 12:37:47 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-03 08:45:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-processors-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-03 08:45:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-03 08:45:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-dropbox-services-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-03 08:45:02 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-07-19 06:23:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-airtable-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-07-19 06:23:40 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-26 12:16:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-flow-registry-client-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-26 12:16:21 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-15 18:08:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-shopify-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-15 18:08:55 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-09-08 19:28:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-jslt-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-09-08 19:28:12 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-03-07 14:14:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-framework-kubernetes-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-03-07 14:14:24 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-04-17 15:29:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-compress-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-04-17 15:29:33 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-07-03 07:58:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-file-resource-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-07-03 07:58:50 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-10-19 21:31:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-apicurio-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-10-19 21:31:25 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-11-16 16:54:28 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-db-schema-registry-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-11-16 16:54:28 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2024-01-16 05:44:02 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-protobuf-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-01-16 05:44:02 -05:00
|
|
|
<type>nar</type>
|
2024-01-30 17:29:31 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-github-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-10-16 16:03:21 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-gitlab-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-01-30 17:29:31 -05:00
|
|
|
<type>nar</type>
|
2024-01-16 05:44: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>
|
2022-12-19 13:02:13 -05:00
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
2019-08-24 07:44:54 -04:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-graph-client-service-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.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>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2019-11-11 18:32:10 -05:00
|
|
|
<type>nar</type>
|
2017-12-18 09:28:50 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2023-10-26 23:35:23 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-hadoop</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-libraries-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-10-26 23:35:23 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-10-26 23:35:23 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2024-02-19 14:53:50 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hadoop-dbcp-service-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2024-02-19 14:53:50 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2023-10-26 23:35:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-parquet-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-10-26 23:35:23 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
2023-02-18 21:38:51 -05:00
|
|
|
<id>include-iotdb</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-iotdb-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-02-18 21:38:51 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</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>
|
2022-12-19 13:02:13 -05:00
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
2022-02-01 12:34:31 -05:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-media-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-02-01 12:34:31 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</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>
|
2022-12-19 13:02:13 -05:00
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
2019-10-22 08:56:42 -04:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-sql-reporting-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2019-10-22 08:56:42 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-10-26 23:35:23 -04:00
|
|
|
</profile>
|
2023-12-07 13:34:18 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-questdb</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2023-12-12 11:48:02 -05:00
|
|
|
<artifactId>nifi-questdb-status-history-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-12-07 13:34:18 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</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>
|
2019-09-06 06:27:04 -04:00
|
|
|
<profile>
|
|
|
|
<id>include-asn1</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
2022-12-19 13:02:13 -05:00
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
2019-09-06 06:27:04 -04:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-asn1-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2023-07-19 16:55:41 -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>
|
2022-12-19 13:02:13 -05:00
|
|
|
<property>
|
|
|
|
<name>allProfiles</name>
|
|
|
|
</property>
|
2022-01-20 13:38:09 -05:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
2022-08-25 03:16:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-snowflake-services-api-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-25 03:16:31 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-01-20 13:38:09 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-snowflake-services-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-01-20 13:38:09 -05:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-08-25 03:16:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-snowflake-processors-nar</artifactId>
|
2024-12-23 18:04:56 -05:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2022-08-25 03:16:31 -04:00
|
|
|
<type>nar</type>
|
|
|
|
</dependency>
|
2022-01-20 13:38:09 -05:00
|
|
|
</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>
|
2022-12-19 13:02:13 -05:00
|
|
|
<profile>
|
|
|
|
<id>include-all</id>
|
|
|
|
<properties>
|
|
|
|
<allProfiles>true</allProfiles>
|
|
|
|
</properties>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
</profile>
|
2015-04-22 14:50:03 -04:00
|
|
|
</profiles>
|
2014-12-08 15:22:14 -05:00
|
|
|
</project>
|