2017-06-05 11:07:28 -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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-05-19 12:45:14 -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
|
2017-05-10 13:09:45 -04:00
|
|
|
the specific language governing permissions and limitations under the License. -->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-lookup-services-bundle</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2017-05-10 13:09:45 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>nifi-lookup-services</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
|
|
|
</dependency>
|
2017-05-19 12:45:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-processor-utils</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2017-05-19 12:45:14 -04:00
|
|
|
</dependency>
|
2017-05-10 13:09:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-lookup-service-api</artifactId>
|
|
|
|
</dependency>
|
2018-03-15 16:28:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-distributed-cache-client-service-api</artifactId>
|
|
|
|
</dependency>
|
2017-05-10 13:09:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-utils</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2017-05-10 13:09:45 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record</artifactId>
|
|
|
|
</dependency>
|
2018-05-18 20:08:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-expression-language</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
</dependency>
|
2017-05-19 12:45:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-configuration2</artifactId>
|
2018-09-20 23:24:17 -04:00
|
|
|
<version>2.3</version>
|
2017-05-19 12:45:14 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-csv</artifactId>
|
2018-09-20 23:24:17 -04:00
|
|
|
<version>1.5</version>
|
2017-05-19 12:45:14 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>1.9.3</version>
|
|
|
|
</dependency>
|
2017-05-10 13:09:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
|
|
<artifactId>geoip2</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-05-18 20:08:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>3.10.0</version>
|
|
|
|
</dependency>
|
2017-05-19 12:45:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2017-05-19 12:45:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-18 20:08:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-service-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-path</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock-record-utils</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-proxy-configuration-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-record-serialization-services</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-schema-registry-service-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-standard-web-test-utils</artifactId>
|
2019-02-16 21:50:35 -05:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.burgstaller</groupId>
|
|
|
|
<artifactId>okhttp-digest</artifactId>
|
2018-09-20 23:24:17 -04:00
|
|
|
<version>1.18</version>
|
2018-05-18 20:08:41 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-05-10 13:09:45 -04:00
|
|
|
</dependencies>
|
2017-05-19 12:45:14 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
2018-05-18 20:08:41 -04:00
|
|
|
<exclude>src/test/resources/complex.avsc</exclude>
|
|
|
|
<exclude>src/test/resources/simple.avsc</exclude>
|
2017-05-19 12:45:14 -04:00
|
|
|
<exclude>src/test/resources/test.csv</exclude>
|
2018-05-28 21:55:51 -04:00
|
|
|
<exclude>src/test/resources/test_Windows-31J.csv</exclude>
|
2017-05-19 12:45:14 -04:00
|
|
|
<exclude>src/test/resources/test.properties</exclude>
|
|
|
|
<exclude>src/test/resources/test.xml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-05-18 20:08:41 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<compilerId>groovy-eclipse-compiler</compilerId>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-eclipse-compiler</artifactId>
|
|
|
|
<version>2.9.2-01</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-eclipse-batch</artifactId>
|
|
|
|
<version>2.4.3-01</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2017-05-19 12:45:14 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-05-10 13:09:45 -04:00
|
|
|
</project>
|