You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2021/02/05 19:47:10 UTC

[nifi] branch main updated: NIFI-8191: Make the nifi-kafka-connector-assembly use attach=true, avoid appending assembly id, and stop producing the 'dir' format since it was not used

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 07dfdff  NIFI-8191: Make the nifi-kafka-connector-assembly use attach=true, avoid appending assembly id, and stop producing the 'dir' format since it was not used
07dfdff is described below

commit 07dfdff3895a8d86429799ed426646fe587eb196
Author: Mark Payne <ma...@hotmail.com>
AuthorDate: Tue Feb 2 13:24:33 2021 -0500

    NIFI-8191: Make the nifi-kafka-connector-assembly use attach=true, avoid appending assembly id, and stop producing the 'dir' format since it was not used
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #4799.
---
 .../nifi-kafka-connect/nifi-kafka-connector-assembly/pom.xml        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nifi-external/nifi-kafka-connect/nifi-kafka-connector-assembly/pom.xml b/nifi-external/nifi-kafka-connect/nifi-kafka-connector-assembly/pom.xml
index 9646683..7a23ca5 100644
--- a/nifi-external/nifi-kafka-connect/nifi-kafka-connector-assembly/pom.xml
+++ b/nifi-external/nifi-kafka-connect/nifi-kafka-connector-assembly/pom.xml
@@ -138,8 +138,9 @@
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
-                    <finalName>nifi-kafka-connector-${project.version}</finalName>
-                    <attach>false</attach>
+                    <finalName>nifi-kafka-connector-assembly-${project.version}</finalName>
+                    <attach>true</attach>
+                    <appendAssemblyId>false</appendAssemblyId>
                 </configuration>
                 <executions>
                     <execution>
@@ -159,7 +160,6 @@
                             </descriptors>
                             <tarLongFileMode>posix</tarLongFileMode>
                             <formats>
-                                <format>dir</format>
                                 <format>tar.gz</format>
                             </formats>
                         </configuration>