mirror of https://github.com/apache/nifi.git
95 lines
4.5 KiB
XML
95 lines
4.5 KiB
XML
|
<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">
|
||
|
<!-- 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. -->
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-record-serialization-services-bundle</artifactId>
|
||
|
<version>1.2.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>nifi-record-serialization-services</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-utils</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-record-serialization-service-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jayway.jsonpath</groupId>
|
||
|
<artifactId>json-path</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.jackson</groupId>
|
||
|
<artifactId>jackson-mapper-asl</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.sf.opencsv</groupId>
|
||
|
<artifactId>opencsv</artifactId>
|
||
|
<version>2.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.thekraken</groupId>
|
||
|
<artifactId>grok</artifactId>
|
||
|
<version>0.1.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.avro</groupId>
|
||
|
<artifactId>avro</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.rat</groupId>
|
||
|
<artifactId>apache-rat-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<excludes combine.children="append">
|
||
|
<exclude>src/test/resources/csv/extra-white-space.csv</exclude>
|
||
|
<exclude>src/test/resources/csv/multi-bank-account.csv</exclude>
|
||
|
<exclude>src/test/resources/csv/single-bank-account.csv</exclude>
|
||
|
<exclude>src/test/resources/grok/error-with-stack-trace.log</exclude>
|
||
|
<exclude>src/test/resources/grok/nifi-log-sample-multiline-with-stacktrace.log</exclude>
|
||
|
<exclude>src/test/resources/grok/nifi-log-sample.log</exclude>
|
||
|
<exclude>src/test/resources/grok/single-line-log-messages.txt</exclude>
|
||
|
<exclude>src/test/resources/json/bank-account-array-different-schemas.json</exclude>
|
||
|
<exclude>src/test/resources/json/bank-account-array.json</exclude>
|
||
|
<exclude>src/test/resources/json/json-with-unicode.json</exclude>
|
||
|
<exclude>src/test/resources/json/primitive-type-array.json</exclude>
|
||
|
<exclude>src/test/resources/json/single-bank-account.json</exclude>
|
||
|
<exclude>src/test/resources/json/single-element-nested-array.json</exclude>
|
||
|
<exclude>src/test/resources/json/single-element-nested.json</exclude>
|
||
|
</excludes>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|