From ee3742d4e811c85359ae7ef85431a6c78666f572 Mon Sep 17 00:00:00 2001 From: Lukas Sembera Date: Wed, 18 Oct 2023 16:27:56 +0000 Subject: [PATCH] SNOW-936900 Use upgraded version of snappy-java The SDK is exporting an old version of its transitive dependency snappy-java . This is visible in the new e2e jar project, which is pulling in the snappy-java defined in hadoop-common and not the version we define in dependencyManagement. This PR makes snappy-java a direct dependency, so we can control the version. --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index fc4a2ab81..8a11ccb45 100644 --- a/pom.xml +++ b/pom.xml @@ -473,6 +473,12 @@ org.slf4j slf4j-api + + org.xerial.snappy + snappy-java + runtime + + junit