Skip to content

Commit

Permalink
Fix dependencies in compression and tools
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Dec 11, 2023
1 parent 20a2cb0 commit 8f1be48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions java/compression/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
exports org.apache.arrow.compression;

requires com.github.luben.zstd_jni;
requires org.apache.arrow.memory.core;
requires org.apache.arrow.vector;
requires org.apache.commons.compress;
}
4 changes: 4 additions & 0 deletions java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-compression</artifactId>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down
1 change: 1 addition & 0 deletions java/tools/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
requires com.google.common;
requires commons.cli;
requires org.apache.arrow.compression;
requires org.apache.arrow.memory.core;
requires org.apache.arrow.vector;
requires slf4j.api;
}

0 comments on commit 8f1be48

Please sign in to comment.