[
https://issues.apache.org/jira/browse/NIFI-238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14323400#comment-14323400
]
ASF GitHub Bot commented on NIFI-238:
-------------------------------------
Github user busbey commented on a diff in the pull request:
https://github.com/apache/incubator-nifi/pull/24#discussion_r24779991
--- Diff:
nifi/nifi-nar-bundles/nifi-kite-bundle/nifi-kite-processors/pom.xml ---
@@ -0,0 +1,160 @@
+<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-kite-bundle</artifactId>
+ <version>0.0.1-incubating-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>nifi-kite-processors</artifactId>
+ <packaging>jar</packaging>
+ <name>Kite Hadoop Processors</name>
+
+ <properties>
+ <kite.version>0.18.0</kite.version>
+ <guava.version>11.0.2</guava.version>
+ <jsr305.version>2.0.1</jsr305.version>
+ <junit.version>4.10</junit.version>
+ </properties>
+
+ <dependencies>
+ <!-- NiFi -->
+
+ <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-processor-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.nifi</groupId>
+ <artifactId>nifi-flowfile-packager</artifactId>
+ </dependency>
+
+ <!-- Kite -->
+
+ <dependency>
+ <groupId>org.kitesdk</groupId>
+ <artifactId>kite-data-core</artifactId>
+ <version>${kite.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.kitesdk</groupId>
+ <artifactId>kite-data-hive</artifactId>
+ <version>${kite.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.kitesdk</groupId>
+ <artifactId>kite-data-hbase</artifactId>
+ <version>${kite.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.kitesdk</groupId>
+ <artifactId>kite-hadoop-dependencies</artifactId>
+ <type>pom</type>
+ <version>${kite.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.kitesdk</groupId>
+ <artifactId>kite-hbase-dependencies</artifactId>
+ <type>pom</type>
+ <scope>provided</scope>
+ <optional>true</optional>
+ <version>${kite.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>${guava.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <!-- avoid warnings by bundling annotations -->
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>compile</scope>
+ <version>${jsr305.version}</version>
+ </dependency>
+
+ <dependency>
+ <!-- avoid warnings by bundling annotations -->
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>annotations</artifactId>
--- End diff --
This is an LGPL dependency, so you can't include it. ([ref asf license
guidelines](http://www.apache.org/legal/resolved.html#category-x))
There is a cleanroom reimplementation that is appropriately licensed:
https://github.com/stephenc/findbugs-annotations
> Add processors to write datasets using Kite
> -------------------------------------------
>
> Key: NIFI-238
> URL: https://issues.apache.org/jira/browse/NIFI-238
> Project: Apache NiFi
> Issue Type: New Feature
> Components: Extensions
> Reporter: Ryan Blue
>
> I think it would be great to have a set of processors that parse incoming
> flow files and add the data to Kite datasets.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)