-
Notifications
You must be signed in to change notification settings - Fork 6
Updating Custom Components to Apache NiFi 2.6.0
Dmitriy Myasnikov edited this page Nov 20, 2025
·
1 revision
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.
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.