2015-12-22 13:10:45 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-02-02 17:35:29 -05:00
|
|
|
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
|
|
license agreements. See the NOTICE file distributed with this work for additional
|
|
|
|
information regarding copyright ownership. The ASF licenses this file to
|
|
|
|
You under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
this file except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
|
|
|
|
by applicable law or agreed to in writing, software distributed under the
|
|
|
|
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
|
|
|
OF ANY KIND, either express or implied. See the License for the specific
|
|
|
|
language governing permissions and limitations under the License. -->
|
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-12-22 13:10:45 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>nifi-elasticsearch-bundle</artifactId>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2015-12-22 13:10:45 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nifi-elasticsearch-processors</artifactId>
|
2016-02-02 17:35:29 -05:00
|
|
|
<packaging>jar</packaging>
|
2015-12-22 13:10:45 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
2016-02-02 17:35:29 -05:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-properties</artifactId>
|
|
|
|
<scope>provided</scope>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-11-17 17:09:49 -05:00
|
|
|
<artifactId>nifi-utils</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2016-11-17 17:09:49 -05:00
|
|
|
</dependency>
|
2017-06-01 12:28:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-path</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2017-06-01 12:28:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-service-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record</artifactId>
|
|
|
|
</dependency>
|
2018-05-15 01:52:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-proxy-configuration-api</artifactId>
|
|
|
|
</dependency>
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
2018-06-04 17:04:01 -04:00
|
|
|
<artifactId>commons-text</artifactId>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2015-12-22 13:10:45 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-01 12:28:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock-record-utils</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2017-06-01 12:28:28 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-11-13 16:13:30 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-schema-registry-service-api</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2020-11-13 16:13:30 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-services</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2020-11-13 16:13:30 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-07-06 13:07:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
</dependency>
|
2015-12-22 13:10:45 -05:00
|
|
|
<dependency>
|
2016-02-02 17:35:29 -05:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-02-02 17:35:29 -05:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service</artifactId>
|
|
|
|
<scope>test</scope>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
2016-07-06 13:07:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
2017-10-02 17:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2016-07-06 13:07:16 -04:00
|
|
|
</dependency>
|
2018-12-19 11:08:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-record-utils</artifactId>
|
2022-10-03 13:59:36 -04:00
|
|
|
<version>1.19.0-SNAPSHOT</version>
|
2018-12-19 11:08:32 -05:00
|
|
|
</dependency>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2016-07-06 13:07:16 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
2016-08-28 06:09:32 -04:00
|
|
|
<exclude>src/test/resources/*.json</exclude>
|
2016-07-06 13:07:16 -04:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-03-17 10:11:01 -04:00
|
|
|
</project>
|