This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 0150ed2bba NIFI-7421 Fixed Kafka integration test failures with 
missing library (#9987)
0150ed2bba is described below

commit 0150ed2bba35f8ab330d433ecfc2b9e1c3138fc8
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Wed Jun 4 16:26:53 2025 +0200

    NIFI-7421 Fixed Kafka integration test failures with missing library (#9987)
    
    Co-authored-by: David Handermann <[email protected]>
    Signed-off-by: David Handermann <[email protected]>
---
 .github/workflows/integration-tests.yml                             | 2 ++
 .../nifi-kafka-bundle/nifi-kafka-3-integration/pom.xml              | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/.github/workflows/integration-tests.yml 
b/.github/workflows/integration-tests.yml
index ff4f9f0326..477d1548db 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -26,6 +26,7 @@ on:
       - '**/test/**/*ITCase.java'
       - '**/test/**/IT*.java'
       - 'nifi-mock/**'
+      - 'nifi-extension-bundles/nifi-kafka-bundle/**'
   pull_request:
     paths:
       - '.github/workflows/integration-tests.yml'
@@ -36,6 +37,7 @@ on:
       - '**/test/**/*ITCase.java'
       - '**/test/**/IT*.java'
       - 'nifi-mock/**'
+      - 'nifi-extension-bundles/nifi-kafka-bundle/**'
 
 env:
   DEFAULT_MAVEN_OPTS: >-
diff --git 
a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-3-integration/pom.xml 
b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-3-integration/pom.xml
index d054eaab30..a04c6a0b6f 100644
--- a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-3-integration/pom.xml
+++ b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-3-integration/pom.xml
@@ -57,6 +57,12 @@
             <version>2.5.0-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-oauth2-provider-api</artifactId>
+            <version>2.5.0-SNAPSHOT</version>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-utils</artifactId>

Reply via email to