This is an automated email from the ASF dual-hosted git repository. mblow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit 6410663e031871a9e6b13323c26aafdc517c8dc9 Author: Michael Blow <[email protected]> AuthorDate: Fri Jan 21 08:51:39 2022 -0500 [NO ISSUE][HYR][HDFS] Exclude netty-all transitive dependency from hadoop Change-Id: I659caef68dea27a55c81a38930760b8c9720601b Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/14903 Integration-Tests: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Reviewed-by: Michael Blow <[email protected]> Reviewed-by: Hussain Towaileb <[email protected]> --- hyracks-fullstack/hyracks/hyracks-hdfs/pom.xml | 6 ++++++ hyracks-fullstack/pom.xml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/hyracks-fullstack/hyracks/hyracks-hdfs/pom.xml b/hyracks-fullstack/hyracks/hyracks-hdfs/pom.xml index 9528eaa..a35f816 100644 --- a/hyracks-fullstack/hyracks/hyracks-hdfs/pom.xml +++ b/hyracks-fullstack/hyracks/hyracks-hdfs/pom.xml @@ -132,6 +132,12 @@ <type>test-jar</type> <classifier>tests</classifier> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> diff --git a/hyracks-fullstack/pom.xml b/hyracks-fullstack/pom.xml index 86fe2d3..08ba1e7 100644 --- a/hyracks-fullstack/pom.xml +++ b/hyracks-fullstack/pom.xml @@ -151,6 +151,12 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop.version}</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId>
