Skip to content

Commit

Permalink
SNOW-936900 Use upgraded version of snappy-java
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sfc-gh-lsembera committed Oct 18, 2023
1 parent 5aa45d3 commit ee3742d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,12 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>runtime</scope>
</dependency>

<!-- JUnit so that we can make some basic unit tests -->
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit ee3742d

Please sign in to comment.