This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit d2524c204ff03d7aad899aad8c527e014e13d9df Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Apr 15 13:58:10 2021 +0200 Camel-Azure-Storage-Blob: The 1.0.2 is using Jackson BOM 2.11.3 and it won't work with Jackson 2.12.x --- .../camel-azure/camel-azure-storage-blob/pom.xml | 21 +++++++++++++++++++++ parent/pom.xml | 1 + 2 files changed, 22 insertions(+) diff --git a/components/camel-azure/camel-azure-storage-blob/pom.xml b/components/camel-azure/camel-azure-storage-blob/pom.xml index 9622a7c..d1436d7 100644 --- a/components/camel-azure/camel-azure-storage-blob/pom.xml +++ b/components/camel-azure/camel-azure-storage-blob/pom.xml @@ -47,6 +47,27 @@ <artifactId>azure-storage-blob</artifactId> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${azure-jackson2-version}</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>${azure-jackson2-version}</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + <version>${azure-jackson2-version}</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-xml</artifactId> + <version>${azure-jackson2-version}</version> + </dependency> + <!-- extras --> <dependency> <groupId>commons-io</groupId> diff --git a/parent/pom.xml b/parent/pom.xml index da5d4ab..1047fb4 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -87,6 +87,7 @@ <aws-xray-version>2.6.1</aws-xray-version> <axiom-version>1.2.14</axiom-version> <azure-sdk-bom-version>1.0.2</azure-sdk-bom-version> + <azure-jackson2-version>2.11.3</azure-jackson2-version> <beanio-version>2.1.0</beanio-version> <beanstalkd-client-version>1.4.6</beanstalkd-client-version> <bouncycastle-version>1.68</bouncycastle-version>
