Madan Jampani

pom.xml updates to include netty 4.0.23 and apache commons pool

...@@ -51,6 +51,15 @@ ...@@ -51,6 +51,15 @@
51 <groupId>de.javakaffee</groupId> 51 <groupId>de.javakaffee</groupId>
52 <artifactId>kryo-serializers</artifactId> 52 <artifactId>kryo-serializers</artifactId>
53 </dependency> 53 </dependency>
54 + <dependency>
55 + <groupId>io.netty</groupId>
56 + <artifactId>netty-all</artifactId>
57 + </dependency>
58 + <dependency>
59 + <groupId>commons-pool</groupId>
60 + <artifactId>commons-pool</artifactId>
61 + <version>1.6</version>
62 + </dependency>
54 </dependencies> 63 </dependencies>
55 64
56 <build> 65 <build>
......
1 /** 1 /**
2 - * Implementation of device store using distributed structures. 2 + * Implementation of device store using distributed distributed p2p synchronization protocol.
3 */ 3 */
4 -package org.onlab.onos.store.device.impl; 4 +package org.onlab.onos.store.device.impl;
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -69,6 +69,12 @@ ...@@ -69,6 +69,12 @@
69 69
70 <dependency> 70 <dependency>
71 <groupId>io.netty</groupId> 71 <groupId>io.netty</groupId>
72 + <artifactId>netty-all</artifactId>
73 + <version>4.0.23.Final</version>
74 + </dependency>
75 +
76 + <dependency>
77 + <groupId>io.netty</groupId>
72 <artifactId>netty</artifactId> 78 <artifactId>netty</artifactId>
73 <version>3.9.0.Final</version> 79 <version>3.9.0.Final</version>
74 </dependency> 80 </dependency>
......