Skip to content

Updating Custom Components to Apache NiFi 2.6.0

Dmitriy Myasnikov edited this page Nov 20, 2025 · 1 revision

Updating Custom Components to Apache NiFi 2.6.0

This document outlines the steps required to update custom Apache NiFi components (processors, controller services, reporting tasks, etc.) for compatibility with Apache NiFi version 2.6.0.

Dependency Updates

Update NiFi Version in pom.xml

Depending on your configuration, update the NiFi version property and the NiFi API version property or dependencies in your root pom.xml file, or in all pom.xml files throught the project.

For example, if you use properties to manage versions, update the nifi.version property:

<properties>
...
    <nifi.version>2.6.0</nifi.version>
...
    <nifi.api.version>2.3.0</nifi.api.version>
...
</properties>

For Apache NiFi 2.6.0, the compatible nifi-api version is 2.3.0.