MVN

org.apache.nifi : nifi-service-utils

Maven & Gradle

Feb 06, 2023
5 usages

This nifi-service-utils module is designed to capture common patterns and utilities that can be leveraged by other services 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.

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

Latest Version

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

  • Latest Stable: 1.20.0

All Versions

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

  • Version Updated
  • nifi-service-utils-1.20.0

    Feb 06, 2023
  • nifi-service-utils-1.19.1

    Dec 05, 2022
  • nifi-service-utils-1.19.0

    Nov 23, 2022
  • nifi-service-utils-1.18.0

    Oct 03, 2022
  • nifi-service-utils-1.17.0

    Jul 27, 2022
  • nifi-service-utils-1.16.3

    Jun 14, 2022
  • nifi-service-utils-1.16.2

    May 23, 2022
  • nifi-service-utils-1.16.1

    Apr 25, 2022
  • nifi-service-utils-1.16.0

    Mar 21, 2022
  • nifi-service-utils-1.15.3

    Jan 13, 2022
  • nifi-service-utils-1.15.2

    Dec 21, 2021
  • nifi-service-utils-1.15.1

    Dec 15, 2021
  • nifi-service-utils-1.15.0

    Nov 03, 2021
  • nifi-service-utils-1.14.0

    Jul 10, 2021
  • nifi-service-utils-1.13.2

    Mar 18, 2021
  • nifi-service-utils-1.13.1

    Mar 10, 2021
  • nifi-service-utils-1.13.0

    Feb 11, 2021
  • nifi-service-utils-1.12.1

    Sep 23, 2020
  • nifi-service-utils-1.12.0

    Aug 13, 2020
  • nifi-service-utils-1.11.4

    Mar 18, 2020
  • nifi-service-utils-1.11.3

    Feb 22, 2020
  • nifi-service-utils-1.11.2

    Feb 14, 2020
  • nifi-service-utils-1.11.1

    Jan 31, 2020
  • nifi-service-utils-1.11.0

    Jan 19, 2020

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

implementation 'org.apache.nifi:nifi-service-utils:1.20.0'

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

implementation("org.apache.nifi:nifi-service-utils:1.20.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.apache.nifi" % "nifi-service-utils" % "1.20.0"