Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Apache NiFi (incubating) processors are typically organized in processor bundles. A processor bundle is generally composed of the following:

...

The archetypeVersion corresponds to the version of the nifi-processor-bundle-archetype that is being used, currently this version is the same as the top-level NiFi version (i.e. for the NiFi 0.2.0-incubating release0 release, the archetypeVersion would be 0.2.0-incubating, and so on). The nifiVersion is the version of NiFi that the new processors will depend on.

...

<dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-ssl-context-service-api</artifactId>
            <version>0.2.0-incubating-SNAPSHOT</version>
            <scope>provided</scope>
</dependency>

...

<dependency>
            <groupId>org.apache.nifi</groupId>
            <artifactId>nifi-standard-services-api-nar</artifactId>
            <version>0.2.0-incubating-SNAPSHOT</version>
            <type>nar</type>
</dependency>

...