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 d3d3de2894 NIFI-14098 Corrected runtime-manifest dependency on 
assembly packaging (#9588)
d3d3de2894 is described below

commit d3d3de2894ae4b1a5221c8c7d1e5d45870e1f71f
Author: David Handermann <[email protected]>
AuthorDate: Thu Dec 19 11:49:17 2024 -0600

    NIFI-14098 Corrected runtime-manifest dependency on assembly packaging 
(#9588)
---
 nifi-manifest/nifi-runtime-manifest/pom.xml | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/nifi-manifest/nifi-runtime-manifest/pom.xml 
b/nifi-manifest/nifi-runtime-manifest/pom.xml
index fe401ad545..01bc5da84c 100644
--- a/nifi-manifest/nifi-runtime-manifest/pom.xml
+++ b/nifi-manifest/nifi-runtime-manifest/pom.xml
@@ -90,11 +90,15 @@
                         </configuration>
                     </execution>
                 </executions>
-                <configuration>
-                    <ignoredUnusedDeclaredDependencies 
combine.children="append">
-                        
<ignoredUnusedDeclaredDependency>org.apache.nifi:nifi-assembly</ignoredUnusedDeclaredDependency>
-                    </ignoredUnusedDeclaredDependencies>
-                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.nifi</groupId>
+                        <artifactId>nifi-assembly</artifactId>
+                        <version>${project.version}</version>
+                        <classifier>manifests</classifier>
+                        <type>zip</type>
+                    </dependency>
+                </dependencies>
             </plugin>
             <!-- Execute the runtime manifest generator -->
             <plugin>

Reply via email to