Skip to content

Commit af9c4f2

Browse files
committed
feat: rearrange netty
Signed-off-by: moxiaoying <[email protected]>
1 parent e62b4d0 commit af9c4f2

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

pom.xml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
<okhttp.version>4.12.0</okhttp.version>
5454
<vertx.version>4.5.10</vertx.version>
5555
<vertx-http-server.version>4.17.1</vertx-http-server.version>
56+
<netty.version>4.1.112.Final</netty.version>
5657
</properties>
5758

5859
<dependencyManagement>
@@ -82,6 +83,72 @@
8283
<version>${vertx-http-server.version}</version>
8384
<scope>test</scope>
8485
</dependency>
86+
<dependency>
87+
<groupId>io.netty</groupId>
88+
<artifactId>netty-buffer</artifactId>
89+
<version>${netty.version}</version>
90+
</dependency>
91+
<dependency>
92+
<groupId>io.netty</groupId>
93+
<artifactId>netty-buffer</artifactId>
94+
<version>${netty.version}</version>
95+
</dependency>
96+
<dependency>
97+
<groupId>io.netty</groupId>
98+
<artifactId>netty-codec</artifactId>
99+
<version>${netty.version}</version>
100+
</dependency>
101+
<dependency>
102+
<groupId>io.netty</groupId>
103+
<artifactId>netty-common</artifactId>
104+
<version>${netty.version}</version>
105+
</dependency>
106+
<dependency>
107+
<groupId>io.netty</groupId>
108+
<artifactId>netty-handler</artifactId>
109+
<version>${netty.version}</version>
110+
</dependency>
111+
<dependency>
112+
<groupId>io.netty</groupId>
113+
<artifactId>netty-resolver</artifactId>
114+
<version>${netty.version}</version>
115+
</dependency>
116+
<dependency>
117+
<groupId>io.netty</groupId>
118+
<artifactId>netty-transport</artifactId>
119+
<version>${netty.version}</version>
120+
</dependency>
121+
<dependency>
122+
<groupId>io.netty</groupId>
123+
<artifactId>netty-transport-native-unix-common</artifactId>
124+
<version>${netty.version}</version>
125+
</dependency>
126+
<dependency>
127+
<groupId>io.netty</groupId>
128+
<artifactId>netty-codec-http</artifactId>
129+
<version>${netty.version}</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>io.netty</groupId>
133+
<artifactId>netty-codec-socks</artifactId>
134+
<version>${netty.version}</version>
135+
</dependency>
136+
<dependency>
137+
<groupId>io.netty</groupId>
138+
<artifactId>netty-handler-proxy</artifactId>
139+
<version>${netty.version}</version>
140+
</dependency>
141+
<dependency>
142+
<groupId>io.netty</groupId>
143+
<artifactId>netty-resolver-dns</artifactId>
144+
<version>${netty.version}</version>
145+
</dependency>
146+
<dependency>
147+
<groupId>io.netty</groupId>
148+
<artifactId>netty-transport-native-epoll</artifactId>
149+
<classifier>linux-x86_64</classifier>
150+
<version>${netty.version}</version>
151+
</dependency>
85152
</dependencies>
86153
</dependencyManagement>
87154

0 commit comments

Comments
 (0)