dongjoon-hyun opened a new pull request #507:
URL: https://github.com/apache/orc/pull/507
After ORC-599 (Bumping up guava to 28.1-jre), `orc-tools` uber jar fails due
to `ClassNotFoundException`. This PR aims to add back to `orc-tools`.
```
$ mvn package -DskipTests
$ java -jar tools/target/orc-tools-1.7.0-SNAPSHOT-uber.jar meta /tmp/o
Exception in thread "main" java.lang.NoClassDefFoundError:
com/google/common/base/Preconditions
at
org.apache.hadoop.conf.Configuration$DeprecationDelta.<init>(Configuration.java:328)
at
org.apache.hadoop.conf.Configuration$DeprecationDelta.<init>(Configuration.java:341)
at org.apache.hadoop.conf.Configuration.<clinit>(Configuration.java:423)
at org.apache.orc.tools.Driver.main(Driver.java:100)
Caused by: java.lang.ClassNotFoundException:
com.google.common.base.Preconditions
at
java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
at
java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]