Skip to content

Commit

Permalink
TEZ-4319: Add explicit dependency on snappy-java to tez-api. (#137). …
Browse files Browse the repository at this point in the history
…(Masatake Iwasaki, Reviewed by Ayush Saxena)
  • Loading branch information
iwasakims authored Dec 24, 2024
1 parent fd6f152 commit d39603c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
<scm.url>scm:git:https://gitbox.apache.org/repos/asf/tez.git</scm.url>
<servlet-api.version>3.1.0</servlet-api.version>
<slf4j.version>1.7.36</slf4j.version>
<snappy-java.version>1.1.10.4</snappy-java.version>
<test.build.data>${project.build.directory}/tmp</test.build.data>
<wro4j-maven-plugin.version>1.7.9</wro4j-maven-plugin.version>

Expand Down Expand Up @@ -383,6 +384,10 @@
<groupId>io.netty</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -797,6 +802,11 @@
<artifactId>leveldbjni-all</artifactId>
<version>${leveldbjni-all.version}</version>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>${snappy-java.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
4 changes: 4 additions & 0 deletions tez-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@
<artifactId>bcprov-jdk18on</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit d39603c

Please sign in to comment.