Skip to content

Commit

Permalink
NIFI-11228 Removed deprecated Azure Blob Storage Processors
Browse files Browse the repository at this point in the history
This closes apache#7234

Signed-off-by: Nandor Soma Abonyi <nsabonyi@apache.org>
  • Loading branch information
exceptionfactory authored and nandorsoma committed May 12, 2023
1 parent fd2138b commit f7e36a0
Show file tree
Hide file tree
Showing 21 changed files with 7 additions and 2,213 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,15 +271,6 @@ void testRuntimeManifest() throws IOException {
assertNotNull(routeOnAttributeDef.getDynamicProperties().get(0).getValue());
assertNotNull(routeOnAttributeDef.getDynamicProperties().get(0).getExpressionLanguageScope());

// Verify DeleteAzureBlobStorage is deprecated
final ProcessorDefinition deleteAzureBlobDef = getProcessorDefinition(bundles, "nifi-azure-nar",
"org.apache.nifi.processors.azure.storage.DeleteAzureBlobStorage");
assertNotNull(deleteAzureBlobDef.getDeprecated());
assertTrue(deleteAzureBlobDef.getDeprecated().booleanValue());
assertNotNull(deleteAzureBlobDef.getDeprecationReason());
assertNotNull(deleteAzureBlobDef.getDeprecationAlternatives());
assertFalse(deleteAzureBlobDef.getDeprecationAlternatives().isEmpty());

// Verify SplitJson has @SystemResourceConsiderations
final ProcessorDefinition splitJsonDef = getProcessorDefinition(bundles, "nifi-standard-nar",
"org.apache.nifi.processors.standard.SplitJson");
Expand Down
12 changes: 4 additions & 8 deletions nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
</parent>
<artifactId>nifi-azure-processors</artifactId>
<packaging>jar</packaging>
<properties>
<azure-keyvault.version>1.2.6</azure-keyvault.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.nifi</groupId>
Expand Down Expand Up @@ -96,11 +93,6 @@
<artifactId>azure-security-keyvault-keys</artifactId>
</dependency>
<!-- Legacy Microsoft Azure Libraries -->
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-keyvault</artifactId>
<version>${azure-keyvault.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
Expand All @@ -113,6 +105,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit f7e36a0

Please sign in to comment.