This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
new 412722c64d NIFI-11475 Fixed missing jackson-dataformat-xml in
nifi-azure-services-api
412722c64d is described below
commit 412722c64d82854813e81a243e0ecdbf21e6fa15
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Thu Apr 20 18:36:38 2023 +0200
NIFI-11475 Fixed missing jackson-dataformat-xml in nifi-azure-services-api
This closes #7186
Signed-off-by: David Handermann <[email protected]>
(cherry picked from commit 8586ac594ec49bae43c8476f8b062ccd939fa043)
---
.../nifi-azure-bundle/nifi-azure-services-api/pom.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-services-api/pom.xml
b/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-services-api/pom.xml
index 55b61ff4f9..7a39fe3aec 100644
--- a/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-services-api/pom.xml
+++ b/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-services-api/pom.xml
@@ -40,5 +40,13 @@
<groupId>org.apache.nifi</groupId>
<artifactId>nifi-api</artifactId>
</dependency>
+ <!-- azure-core does not bring jackson-dataformat-xml dependency from
version 1.37.0 on -->
+ <!-- but some libraries in the processor nar module depend on
jackson-dataformat-xml -->
+ <!-- and check its existence and version via JacksonVersion in
azure-core -->
+ <!-- that's why it needs to be present in the services api nar module
beside azure-core -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-xml</artifactId>
+ </dependency>
</dependencies>
</project>