mirror of https://github.com/apache/nifi.git
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 <pierre.villard.fr@gmail.com> This closes #4799.
This commit is contained in:
parent
3f26e54521
commit
07dfdff389
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue