You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ex...@apache.org on 2022/11/30 17:45:42 UTC

[nifi] branch main updated: NIFI-10903 - Updated the registry pom with a fix for the build formats, and now builds dir by default alongside the zip.

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 c2c6c1bcec NIFI-10903 - Updated the registry pom with a fix for the build formats, and now builds dir by default alongside the zip.
c2c6c1bcec is described below

commit c2c6c1bcec0769f1dfcc6168de6d253018daa7ac
Author: Nathan Gough <th...@gmail.com>
AuthorDate: Tue Nov 29 15:15:30 2022 -0500

    NIFI-10903 - Updated the registry pom with a fix for the build formats, and now builds dir by default alongside the zip.
    
    This closes #6732
    
    Signed-off-by: David Handermann <ex...@apache.org>
---
 nifi-registry/nifi-registry-assembly/pom.xml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/nifi-registry/nifi-registry-assembly/pom.xml b/nifi-registry/nifi-registry-assembly/pom.xml
index 5389aff488..3f180efc24 100644
--- a/nifi-registry/nifi-registry-assembly/pom.xml
+++ b/nifi-registry/nifi-registry-assembly/pom.xml
@@ -48,7 +48,10 @@
                                 <descriptor>src/main/assembly/dependencies.xml</descriptor>
                             </descriptors>
                             <tarLongFileMode>posix</tarLongFileMode>
-                            <formats>zip</formats>
+                            <formats>
+                                <format>dir</format>
+                                <format>zip</format>
+                            </formats>
                         </configuration>
                     </execution>
                 </executions>
@@ -499,7 +502,9 @@
                                         <descriptor>src/main/assembly/dependencies.xml</descriptor>
                                     </descriptors>
                                     <tarLongFileMode>posix</tarLongFileMode>
-                                    <formats>tar.gz</formats>
+                                    <formats>
+                                        <format>tar.gz</format>
+                                    </formats>
                                 </configuration>
                             </execution>
                         </executions>
@@ -536,7 +541,9 @@
                                     <descriptors>
                                         <descriptor>src/main/assembly/dependencies.xml</descriptor>
                                     </descriptors>
-                                    <formats>dir</formats>
+                                    <formats>
+                                        <format>dir</format>
+                                    </formats>
                                 </configuration>
                             </execution>
                         </executions>