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

pvillard 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 9bc7e401cc NIFI-14934 Switched Parent NAR to Services API for GitHub 
Bundle
9bc7e401cc is described below

commit 9bc7e401ccec7b372988673386cf17f1bc38174d
Author: exceptionfactory <[email protected]>
AuthorDate: Wed Sep 3 07:41:46 2025 -0500

    NIFI-14934 Switched Parent NAR to Services API for GitHub Bundle
    
    - Changing from shared-nar to standard-services-api-nar enables using 
Jackson 2.19.0 as required for current versions of the GitHub client library
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #10262.
---
 .../nifi-github-bundle/nifi-github-extensions/pom.xml                | 5 +++++
 nifi-extension-bundles/nifi-github-bundle/nifi-github-nar/pom.xml    | 2 +-
 nifi-extension-bundles/nifi-github-bundle/pom.xml                    | 5 +++--
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git 
a/nifi-extension-bundles/nifi-github-bundle/nifi-github-extensions/pom.xml 
b/nifi-extension-bundles/nifi-github-bundle/nifi-github-extensions/pom.xml
index 554ce341f5..4f7470ed86 100644
--- a/nifi-extension-bundles/nifi-github-bundle/nifi-github-extensions/pom.xml
+++ b/nifi-extension-bundles/nifi-github-bundle/nifi-github-extensions/pom.xml
@@ -28,6 +28,7 @@
         <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-utils</artifactId>
+            <version>2.6.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
@@ -39,6 +40,10 @@
             <artifactId>github-api</artifactId>
             <version>${github-api.version}</version>
         </dependency>
+        <dependency>
+            <groupId>com.github.ben-manes.caffeine</groupId>
+            <artifactId>caffeine</artifactId>
+        </dependency>
         <dependency>
             <groupId>io.jsonwebtoken</groupId>
             <artifactId>jjwt-api</artifactId>
diff --git a/nifi-extension-bundles/nifi-github-bundle/nifi-github-nar/pom.xml 
b/nifi-extension-bundles/nifi-github-bundle/nifi-github-nar/pom.xml
index b1e467bb1f..dec9f0ed73 100644
--- a/nifi-extension-bundles/nifi-github-bundle/nifi-github-nar/pom.xml
+++ b/nifi-extension-bundles/nifi-github-bundle/nifi-github-nar/pom.xml
@@ -33,7 +33,7 @@
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
-            <artifactId>nifi-standard-shared-nar</artifactId>
+            <artifactId>nifi-standard-services-api-nar</artifactId>
             <version>2.6.0-SNAPSHOT</version>
             <type>nar</type>
         </dependency>
diff --git a/nifi-extension-bundles/nifi-github-bundle/pom.xml 
b/nifi-extension-bundles/nifi-github-bundle/pom.xml
index 4fccd3ffbd..5a151cc10b 100644
--- a/nifi-extension-bundles/nifi-github-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-github-bundle/pom.xml
@@ -16,10 +16,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <artifactId>nifi-standard-shared-bom</artifactId>
+        <artifactId>nifi-extension-bundles</artifactId>
         <groupId>org.apache.nifi</groupId>
         <version>2.6.0-SNAPSHOT</version>
-        
<relativePath>../nifi-standard-shared-bundle/nifi-standard-shared-bom</relativePath>
     </parent>
 
     <artifactId>nifi-github-bundle</artifactId>
@@ -27,6 +26,8 @@
 
     <properties>
         <github-api.version>1.329</github-api.version>
+        <!-- Override Jackson to 2.19.0 pending GitHub client upgrade to 
support Jackson 2.20.0 -->
+        <jackson.bom.version>2.19.0</jackson.bom.version>
     </properties>
 
     <modules>

Reply via email to