MVN

org.apache.nifi : nifi-utils

Maven & Gradle

Aug 21, 2023
201 usages

This nifi-utils module should be a general purpose place to store widely and generally useful functions that any component might want to leverage. NO DEPENDENCIES should be added. This module is likely to be leveraged by every extension and should not bring along any other dependencies. The only dependency intended is the nifi-api and even this is expected to be already provided in any case where it would be used. The typical place this util would be found is within a nar and all nars already have nifi-api as a parent dependency. The nifi-api can be thought of as a NiFi Application Container level dependency.

<dependency>
    <groupId>org.apache.nifi</groupId>
    <artifactId>nifi-utils</artifactId>
    <version>1.23.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.nifi : nifi-utils to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.23.2
  • Latest Beta: 1.0.0-BETA

All Versions

Choose a version of org.apache.nifi : nifi-utils to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.23.x
nifi-utils-1.23.2
nifi-utils-1.23.1
nifi-utils-1.23.0
1.22.x
nifi-utils-1.22.0
1.21.x
nifi-utils-1.21.0
1.20.x
nifi-utils-1.20.0
1.19.x
nifi-utils-1.19.1
nifi-utils-1.19.0
1.18.x
nifi-utils-1.18.0
1.17.x
nifi-utils-1.17.0
1.16.x
nifi-utils-1.16.3
nifi-utils-1.16.2
nifi-utils-1.16.1
nifi-utils-1.16.0
1.15.x
nifi-utils-1.15.3
nifi-utils-1.15.2
nifi-utils-1.15.1
nifi-utils-1.15.0
1.14.x
nifi-utils-1.14.0
1.13.x
nifi-utils-1.13.2
nifi-utils-1.13.1
nifi-utils-1.13.0
1.12.x
nifi-utils-1.12.1
nifi-utils-1.12.0
1.11.x
nifi-utils-1.11.4
nifi-utils-1.11.3
nifi-utils-1.11.2
nifi-utils-1.11.1
nifi-utils-1.11.0
1.10.x
nifi-utils-1.10.0
1.9.x
nifi-utils-1.9.2
nifi-utils-1.9.1
nifi-utils-1.9.0
1.8.x
nifi-utils-1.8.0
1.7.x
nifi-utils-1.7.1
nifi-utils-1.7.0
1.6.x
nifi-utils-1.6.0
1.5.x
nifi-utils-1.5.0
1.4.x
nifi-utils-1.4.0
1.3.x
nifi-utils-1.3.0
1.2.x
nifi-utils-1.2.0
1.1.x
nifi-utils-1.1.2
nifi-utils-1.1.1
nifi-utils-1.1.0
1.0.x
nifi-utils-1.0.1
nifi-utils-1.0.0
nifi-utils-1.0.0-BETA
0.7.x
nifi-utils-0.7.4
nifi-utils-0.7.3
nifi-utils-0.7.2
nifi-utils-0.7.1
nifi-utils-0.7.0
0.6.x
nifi-utils-0.6.1
nifi-utils-0.6.0
0.5.x
nifi-utils-0.5.1
nifi-utils-0.5.0
0.4.x
nifi-utils-0.4.1
nifi-utils-0.4.0
0.3.x
nifi-utils-0.3.0
0.2.x
nifi-utils-0.2.1
nifi-utils-0.2.0-incubating
0.1.x
nifi-utils-0.1.0-incubating
0.0.x
nifi-utils-0.0.2-incubating
nifi-utils-0.0.1-incubating

How to add a dependency to Maven

Add the following org.apache.nifi : nifi-utils maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

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

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.nifi : nifi-utils gradle dependency to your build.gradle file:

implementation 'org.apache.nifi:nifi-utils:1.23.2'

Gradle Kotlin DSL: Add the following org.apache.nifi : nifi-utils gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.nifi:nifi-utils:1.23.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.nifi : nifi-utils sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.nifi" % "nifi-utils" % "1.23.2"

Advertisement