NIFI-10340 Corrected Registry assembly extension builds with tar.gz

This closes #6289

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Zoltan Kornel Torok 2022-08-10 16:06:50 +02:00 committed by exceptionfactory
parent 1b4d66a726
commit 3231058488
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 7 additions and 3 deletions

View File

@ -190,6 +190,7 @@
<nifi.registry.registry.alias.configuration.file>./conf/registry-aliases.xml</nifi.registry.registry.alias.configuration.file>
<!-- nifi-registry.properties: extension properties -->
<nifi.registry.extension.archive.type>zip</nifi.registry.extension.archive.type>
<nifi.registry.extensions.working.directory>./work/extensions</nifi.registry.extensions.working.directory>
<nifi.registry.extension.dir.aws />
@ -395,7 +396,7 @@
<version>1.18.0-SNAPSHOT</version>
<classifier>bin</classifier>
<scope>runtime</scope>
<type>zip</type>
<type>${nifi.registry.extension.archive.type}</type>
</dependency>
</dependencies>
<build>
@ -438,7 +439,7 @@
<version>1.18.0-SNAPSHOT</version>
<classifier>bin</classifier>
<scope>runtime</scope>
<type>zip</type>
<type>${nifi.registry.extension.archive.type}</type>
</dependency>
</dependencies>
<build>
@ -469,6 +470,9 @@
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<nifi.registry.extension.archive.type>tar.gz</nifi.registry.extension.archive.type>
</properties>
<build>
<plugins>
<plugin>
@ -540,4 +544,4 @@
</build>
</profile>
</profiles>
</project>
</project>