Yuta HIGUCHI

expand netty-all to match feature.xml

Change-Id: I1543cd614d0b475076dc94d2d8cddbbabe10eb7d
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
36 36
37 <properties> 37 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 + <netty4.version>4.0.23.Final</netty4.version>
39 </properties> 40 </properties>
40 41
41 <dependencyManagement> 42 <dependencyManagement>
...@@ -87,11 +88,6 @@ ...@@ -87,11 +88,6 @@
87 <version>18.0</version> 88 <version>18.0</version>
88 </dependency> 89 </dependency>
89 90
90 - <dependency>
91 - <groupId>io.netty</groupId>
92 - <artifactId>netty-all</artifactId>
93 - <version>4.0.23.Final</version>
94 - </dependency>
95 91
96 <dependency> 92 <dependency>
97 <groupId>io.netty</groupId> 93 <groupId>io.netty</groupId>
...@@ -291,6 +287,31 @@ ...@@ -291,6 +287,31 @@
291 <artifactId>commons-pool</artifactId> 287 <artifactId>commons-pool</artifactId>
292 <version>1.6</version> 288 <version>1.6</version>
293 </dependency> 289 </dependency>
290 + <dependency>
291 + <groupId>io.netty</groupId>
292 + <artifactId>netty-common</artifactId>
293 + <version>${netty4.version}</version>
294 + </dependency>
295 + <dependency>
296 + <groupId>io.netty</groupId>
297 + <artifactId>netty-buffer</artifactId>
298 + <version>${netty4.version}</version>
299 + </dependency>
300 + <dependency>
301 + <groupId>io.netty</groupId>
302 + <artifactId>netty-transport</artifactId>
303 + <version>${netty4.version}</version>
304 + </dependency>
305 + <dependency>
306 + <groupId>io.netty</groupId>
307 + <artifactId>netty-handler</artifactId>
308 + <version>${netty4.version}</version>
309 + </dependency>
310 + <dependency>
311 + <groupId>io.netty</groupId>
312 + <artifactId>netty-codec</artifactId>
313 + <version>${netty4.version}</version>
314 + </dependency>
294 </dependencies> 315 </dependencies>
295 </dependencyManagement> 316 </dependencyManagement>
296 317
......
...@@ -32,12 +32,28 @@ ...@@ -32,12 +32,28 @@
32 <scope>test</scope> 32 <scope>test</scope>
33 </dependency> 33 </dependency>
34 <dependency> 34 <dependency>
35 + <groupId>commons-pool</groupId>
36 + <artifactId>commons-pool</artifactId>
37 + </dependency>
38 + <dependency>
35 <groupId>io.netty</groupId> 39 <groupId>io.netty</groupId>
36 - <artifactId>netty-all</artifactId> 40 + <artifactId>netty-common</artifactId>
37 </dependency> 41 </dependency>
38 <dependency> 42 <dependency>
39 - <groupId>commons-pool</groupId> 43 + <groupId>io.netty</groupId>
40 - <artifactId>commons-pool</artifactId> 44 + <artifactId>netty-buffer</artifactId>
45 + </dependency>
46 + <dependency>
47 + <groupId>io.netty</groupId>
48 + <artifactId>netty-transport</artifactId>
49 + </dependency>
50 + <dependency>
51 + <groupId>io.netty</groupId>
52 + <artifactId>netty-handler</artifactId>
53 + </dependency>
54 + <dependency>
55 + <groupId>io.netty</groupId>
56 + <artifactId>netty-codec</artifactId>
41 </dependency> 57 </dependency>
42 </dependencies> 58 </dependencies>
43 59
......