You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ae...@apache.org on 2019/06/04 14:18:25 UTC

[hadoop] branch trunk updated: HDDS-1641. Csi server fails because transitive Netty dependencies (#906)

This is an automated email from the ASF dual-hosted git repository.

aengineer pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 50909a7  HDDS-1641. Csi server fails because transitive Netty dependencies (#906)
50909a7 is described below

commit 50909a7aa0ac44eff94cf4c966920b9fb86f6974
Author: Elek, Márton <el...@users.noreply.github.com>
AuthorDate: Tue Jun 4 16:18:15 2019 +0200

    HDDS-1641. Csi server fails because transitive Netty dependencies (#906)
---
 hadoop-ozone/csi/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/hadoop-ozone/csi/pom.xml b/hadoop-ozone/csi/pom.xml
index c3fb1d3..fb04d8c 100644
--- a/hadoop-ozone/csi/pom.xml
+++ b/hadoop-ozone/csi/pom.xml
@@ -46,6 +46,16 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-hdds-config</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-common</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-hdfs</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.google.guava</groupId>
@@ -68,6 +78,11 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
       <version>4.1.30.Final</version>
     </dependency>
     <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+      <version>4.1.30.Final</version>
+    </dependency>
+    <dependency>
       <groupId>io.grpc</groupId>
       <artifactId>grpc-protobuf</artifactId>
       <version>${grpc.version}</version>
@@ -99,6 +114,10 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
           <groupId>io.netty</groupId>
           <artifactId>netty-all</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>io.netty</groupId>
+          <artifactId>netty</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
   </dependencies>


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org