This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 14a950765335b26db81df585f42259bf1f017943 Author: Andrew Sherman <[email protected]> AuthorDate: Wed Apr 5 10:52:45 2023 -0700 IMPALA-12050: Exclude kryo-shaded from the Java build Kryo is a serialization library that is brought in by Apache Hudi. It is not used by Impala at runtime when running tests that use Hudi (hudi-parquet.test). TESTING - Exhaustive tests ran clean - Verified kryo-shaded is no longer present in dependencies. Change-Id: I57436be139d56fb9f028a2cdeab412cc60631a06 Reviewed-on: http://gerrit.cloudera.org:8080/19707 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- fe/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fe/pom.xml b/fe/pom.xml index 00c2eae0d..7362d1770 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -120,6 +120,10 @@ under the License. <groupId>org.rocksdb</groupId> <artifactId>rocksdbjni</artifactId> </exclusion> + <exclusion> + <groupId>com.esotericsoftware</groupId> + <artifactId>kryo-shaded</artifactId> + </exclusion> </exclusions> </dependency>
