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. -->
|
2016-02-12 17:27:59 -05: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 http://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>
|
2018-01-12 15:15:32 -05:00
|
|
|
<version>1.6.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
|
|
|
|
|
|
|
<properties>
|
|
|
|
<slf4jversion>1.7.12</slf4jversion>
|
2015-12-29 13:43:54 -05:00
|
|
|
<es.version>2.1.0</es.version>
|
2016-11-16 12:26:26 -05:00
|
|
|
<lucene.version>5.3.1</lucene.version>
|
2015-12-22 13:10:45 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</dependency>
|
2017-06-01 12:28:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-path</artifactId>
|
|
|
|
</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>
|
2016-11-17 17:09:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
2015-12-29 13:43:54 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-core</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
</dependency>
|
2015-12-22 13:10:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-01 12:28:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock-record-utils</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-12-22 13:10:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${es.version}</version>
|
2017-08-14 18:02:22 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-12-22 13:10:45 -05:00
|
|
|
</dependency>
|
2016-07-06 13:07:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
</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-08-14 18:02:22 -04:00
|
|
|
<version>${jackson.version}</version>
|
2017-10-02 17:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
2016-07-06 13:07:16 -04: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>
|
2015-12-22 13:10:45 -05:00
|
|
|
</project>
|