Download nifi-processor-utils-1.10.0.jar file

Introduction

You can download nifi-processor-utils-1.10.0.jar in this page.

License

Apache License

Type List

nifi-processor-utils-1.10.0.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.nifi/nifi-processor-utils/pom.properties
META-INF/maven/org.apache.nifi/nifi-processor-utils/pom.xml
org.apache.nifi.processor.util.bin.Bin.class
org.apache.nifi.processor.util.bin.BinFiles.class
org.apache.nifi.processor.util.bin.BinManager.class
org.apache.nifi.processor.util.bin.BinProcessingResult.class
org.apache.nifi.processor.util.list.AbstractListProcessor.class
org.apache.nifi.processor.util.list.EntityListing.class
org.apache.nifi.processor.util.list.ListProcessorTestWatcher.class
org.apache.nifi.processor.util.list.ListableEntity.class
org.apache.nifi.processor.util.list.ListedEntity.class
org.apache.nifi.processor.util.list.ListedEntityTracker.class
org.apache.nifi.processor.util.listen.AbstractListenEventBatchingProcessor.class
org.apache.nifi.processor.util.listen.AbstractListenEventProcessor.class
org.apache.nifi.processor.util.listen.ListenerProperties.class
org.apache.nifi.processor.util.listen.dispatcher.AsyncChannelDispatcher.class
org.apache.nifi.processor.util.listen.dispatcher.ChannelDispatcher.class
org.apache.nifi.processor.util.listen.dispatcher.DatagramChannelDispatcher.class
org.apache.nifi.processor.util.listen.dispatcher.SocketChannelAttachment.class
org.apache.nifi.processor.util.listen.dispatcher.SocketChannelDispatcher.class
org.apache.nifi.processor.util.listen.event.Event.class
org.apache.nifi.processor.util.listen.event.EventFactory.class
org.apache.nifi.processor.util.listen.event.EventFactoryUtil.class
org.apache.nifi.processor.util.listen.event.EventQueue.class
org.apache.nifi.processor.util.listen.event.StandardEvent.class
org.apache.nifi.processor.util.listen.event.StandardEventFactory.class
org.apache.nifi.processor.util.listen.handler.ChannelHandler.class
org.apache.nifi.processor.util.listen.handler.ChannelHandlerFactory.class
org.apache.nifi.processor.util.listen.handler.socket.SSLSocketChannelHandler.class
org.apache.nifi.processor.util.listen.handler.socket.SocketChannelHandler.class
org.apache.nifi.processor.util.listen.handler.socket.SocketChannelHandlerFactory.class
org.apache.nifi.processor.util.listen.handler.socket.StandardSocketChannelHandler.class
org.apache.nifi.processor.util.listen.response.ChannelResponder.class
org.apache.nifi.processor.util.listen.response.ChannelResponse.class
org.apache.nifi.processor.util.listen.response.socket.SSLSocketChannelResponder.class
org.apache.nifi.processor.util.listen.response.socket.SocketChannelResponder.class
org.apache.nifi.processor.util.pattern.DiscontinuedException.class
org.apache.nifi.processor.util.pattern.ErrorTypes.class
org.apache.nifi.processor.util.pattern.ExceptionHandler.class
org.apache.nifi.processor.util.pattern.PartialFunctions.class
org.apache.nifi.processor.util.pattern.Put.class
org.apache.nifi.processor.util.pattern.PutGroup.class
org.apache.nifi.processor.util.pattern.RollbackOnFailure.class
org.apache.nifi.processor.util.pattern.RoutingResult.class
org.apache.nifi.processor.util.put.AbstractPutEventProcessor.class
org.apache.nifi.processor.util.put.sender.ChannelSender.class
org.apache.nifi.processor.util.put.sender.DatagramChannelSender.class
org.apache.nifi.processor.util.put.sender.SSLSocketChannelSender.class
org.apache.nifi.processor.util.put.sender.SocketChannelSender.class

Pom

nifi-processor-utils-1.10.0.pom file content.

<?xml version="1.0"?>
<!--
  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.
-->
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.apache.nifi</groupId>
        <artifactId>nifi-extension-utils</artifactId>
        <version>1.10.0</version>
    </parent>
    <artifactId>nifi-processor-utils</artifactId>
    <packaging>jar</packaging>
    <description>
        This nifi-processor-utils module is designed to capture common patterns
        and utilities that can be leveraged by other processors or components to
        help promote reuse.  These patterns may become framework level features 
        or may simply be made available through this utility.  It is ok for this
        module to have dependencies but care should be taken when adding dependencies
        as this increases the cost of utilizing this module in various nars.
    </description>
    <dependencies>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-utils</artifactId>
            <version>1.10.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-security-utils</artifactId>
            <version>1.10.0</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.6</version>
        </dependency>
        <!-- Other modules using nifi-processor-utils are expected to have this API available, typically through a NAR dependency -->
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-ssl-context-service-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-distributed-cache-client-service-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-mock</artifactId>
            <version>1.10.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <!-- Dependency marked as provided, not test, because ListProcessorTestWatcher uses TestWatcher -->
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
    <profiles>
        <profile>
            <!-- This profile, activating when compiling on Java versions above 1.8, provides configuration changes to
                 allow NiFi to be compiled on those JDKs. -->
            <id>jigsaw</id>
            <activation>
                <jdk>(1.8,)</jdk>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>javax.xml.bind</groupId>
                    <artifactId>jaxb-api</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-core</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-impl</artifactId>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.apache.nifi</groupId>
   <artifactId>nifi-processor-utils</artifactId>
   <version>1.10.0</version>
</dependency>

Download

If you think the following nifi-processor-utils-1.10.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download nifi-processor-utils-1.10.0.jar file




PreviousNext

Related