You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pegasus.apache.org by la...@apache.org on 2022/06/06 14:20:54 UTC

[incubator-pegasus] branch master updated: build(java-client): Remove redundant netty dependencies (#993)

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

laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


The following commit(s) were added to refs/heads/master by this push:
     new 1e7fa78e build(java-client): Remove redundant netty dependencies (#993)
1e7fa78e is described below

commit 1e7fa78e175ad851ecdee237dbe9c8a3ca399fef
Author: WHBANG <38...@users.noreply.github.com>
AuthorDate: Mon Jun 6 22:20:48 2022 +0800

    build(java-client): Remove redundant netty dependencies (#993)
---
 java-client/pom.xml | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/java-client/pom.xml b/java-client/pom.xml
index 0415a5ac..fc5ec426 100644
--- a/java-client/pom.xml
+++ b/java-client/pom.xml
@@ -86,11 +86,6 @@
       <artifactId>slf4j-api</artifactId>
       <version>1.7.2</version>
     </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-      <version>1.7.2</version>
-    </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
@@ -101,9 +96,28 @@
       <artifactId>zkclient</artifactId>
       <version>0.2</version>
     </dependency>
+    <!-- https://mvnrepository.com/artifact/io.netty/netty-buffer -->
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+      <version>4.1.42.Final</version>
+    </dependency>
+    <!-- https://mvnrepository.com/artifact/io.netty/netty-transport -->
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+      <version>4.1.42.Final</version>
+    </dependency>
+    <!-- https://mvnrepository.com/artifact/io.netty/netty-codec -->
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+      <version>4.1.42.Final</version>
+    </dependency>
+    <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http -->
     <dependency>
       <groupId>io.netty</groupId>
-      <artifactId>netty-all</artifactId>
+      <artifactId>netty-codec-http</artifactId>
       <version>4.1.42.Final</version>
     </dependency>
     <dependency>


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