Skip to content

Commit

Permalink
[# 6294] Prune unused Netty libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
PorterZhang2021 committed Apr 16, 2024
1 parent e0676ed commit cdb435d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 66 deletions.
1 change: 1 addition & 0 deletions dev/dependencyList
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ metrics-jmx/4.2.23//metrics-jmx-4.2.23.jar
metrics-json/4.2.23//metrics-json-4.2.23.jar
metrics-jvm/4.2.23//metrics-jvm-4.2.23.jar
mimepull/1.9.15//mimepull-1.9.15.jar
netty-all/4.1.100.Final//netty-all-4.1.100.Final.jar
netty-buffer/4.1.100.Final//netty-buffer-4.1.100.Final.jar
netty-codec-dns/4.1.100.Final//netty-codec-dns-4.1.100.Final.jar
netty-codec-http/4.1.100.Final//netty-codec-http-4.1.100.Final.jar
Expand Down
67 changes: 1 addition & 66 deletions kyuubi-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,72 +111,7 @@

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-dns</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-socks</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-classes-epoll</artifactId>
<artifactId>netty-all</artifactId>
</dependency>

<dependency>
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,18 @@
</exclusions>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
Expand Down

0 comments on commit cdb435d

Please sign in to comment.