Skip to content

Commit

Permalink
PARQUET-1691: Build fails due to missing hadoop-lzo (apache#698)
Browse files Browse the repository at this point in the history
See details about the root cause at twitter/hadoop-lzo#140
  • Loading branch information
gszadovszky authored and shangxinli committed Dec 16, 2019
1 parent 7ca99de commit 68f542f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions parquet-protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@
<groupId>com.twitter.elephantbird</groupId>
<artifactId>elephant-bird-core</artifactId>
<version>${elephant-bird.version}</version>
<exclusions>
<!-- hadoop-lzo is not required for parquet build/tests and there are issues downloading it -->
<exclusion>
<groupId>com.hadoop.gplcompression</groupId>
<artifactId>hadoop-lzo</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
Expand Down
7 changes: 7 additions & 0 deletions parquet-thrift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@
<groupId>com.twitter.elephantbird</groupId>
<artifactId>elephant-bird-core</artifactId>
<version>${elephant-bird.version}</version>
<exclusions>
<!-- hadoop-lzo is not required for parquet build/tests and there are issues downloading it -->
<exclusion>
<groupId>com.hadoop.gplcompression</groupId>
<artifactId>hadoop-lzo</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.twitter.elephantbird</groupId>
Expand Down

0 comments on commit 68f542f

Please sign in to comment.