2015-11-11 23:06:04 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
2016-05-01 19:35:34 -04:00
|
|
|
license agreements. See the NOTICE file distributed with this work for additional
|
|
|
|
information regarding copyright ownership. The ASF licenses this file to
|
|
|
|
You under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
this file except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
|
|
|
|
by applicable law or agreed to in writing, software distributed under the
|
|
|
|
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
|
|
|
OF ANY KIND, either express or implied. See the License for the specific
|
|
|
|
language governing permissions and limitations under the License. -->
|
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">
|
2016-11-17 17:09:49 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-11-11 23:06:04 -05:00
|
|
|
|
2016-11-17 17:09:49 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-azure-bundle</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-11-17 17:09:49 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>nifi-azure-processors</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2017-11-08 09:20:58 -05:00
|
|
|
<properties>
|
2022-03-05 07:49:46 -05:00
|
|
|
<azure-keyvault.version>1.2.6</azure-keyvault.version>
|
2017-11-08 09:20:58 -05:00
|
|
|
</properties>
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-11-17 17:09:49 -05:00
|
|
|
</dependency>
|
2019-10-01 05:25:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-service-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-10-01 05:25:30 -04:00
|
|
|
</dependency>
|
2017-11-08 09:20:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-service-api</artifactId>
|
|
|
|
</dependency>
|
2022-08-17 19:55:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-sink-api</artifactId>
|
|
|
|
</dependency>
|
2017-11-08 09:20:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record</artifactId>
|
|
|
|
</dependency>
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependency>
|
2018-05-15 01:52:39 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-proxy-configuration-api</artifactId>
|
|
|
|
</dependency>
|
2019-09-13 16:10:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-azure-services-api</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-10-28 15:33:40 -04:00
|
|
|
<scope>provided</scope>
|
2019-09-13 16:10:09 -04:00
|
|
|
</dependency>
|
2020-05-01 14:55:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-identity</artifactId>
|
2021-05-16 19:05:51 -04:00
|
|
|
</dependency>
|
2017-11-08 09:20:58 -05:00
|
|
|
<dependency>
|
2022-08-17 19:55:17 -04:00
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-messaging-eventhubs</artifactId>
|
2016-11-17 17:09:49 -05:00
|
|
|
</dependency>
|
2016-05-01 19:35:34 -04:00
|
|
|
<dependency>
|
2022-08-17 19:55:17 -04:00
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId>
|
2020-05-04 18:58:36 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-cosmos</artifactId>
|
2019-09-13 16:10:09 -04:00
|
|
|
</dependency>
|
2020-03-10 00:53:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-storage-file-datalake</artifactId>
|
2020-05-04 18:58:36 -04:00
|
|
|
</dependency>
|
2021-10-26 13:38:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-storage-blob</artifactId>
|
2022-08-17 19:55:17 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- Legacy Microsoft Azure Libraries -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
|
|
|
<artifactId>azure-keyvault</artifactId>
|
|
|
|
<version>${azure-keyvault.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
|
|
|
<artifactId>azure-storage</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2021-10-26 13:38:42 -04:00
|
|
|
</dependency>
|
2022-01-31 16:06:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2022-06-22 19:25:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-11-17 17:09:49 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-04-22 14:42:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock-record-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2020-04-22 14:42:35 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-04 18:58:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-avro-record-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2020-05-04 18:58:36 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-json-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2020-05-04 18:58:36 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-schema-registry-service-api</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2020-05-04 18:58:36 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-services</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2020-05-04 18:58:36 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
2022-08-17 19:55:17 -04:00
|
|
|
<version>${mockito.version}</version>
|
2020-05-04 18:58:36 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependency>
|
2017-04-29 20:23:35 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
2022-01-31 16:06:13 -05:00
|
|
|
<artifactId>nifi-listed-entity</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-11-17 17:09:49 -05:00
|
|
|
</dependency>
|
2016-05-01 19:35:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2017-04-29 20:23:35 -04:00
|
|
|
<artifactId>nifi-distributed-cache-client-service-api</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-05-01 19:35:34 -04:00
|
|
|
</dependency>
|
2022-04-20 09:05:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-proxy-configuration</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2022-04-20 09:05:05 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-17 17:09:49 -05:00
|
|
|
</dependencies>
|
2018-01-12 12:15:13 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
|
|
|
<exclude>src/test/resources/hello.txt</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-11-11 23:06:04 -05:00
|
|
|
</project>
|