Madan Jampani

Using latest atomix and copycat versions

Change-Id: Ie9bb91e578280e2786d4a212dfea3ebf63e9451c
...@@ -79,6 +79,7 @@ ...@@ -79,6 +79,7 @@
79 <netty4.version>4.0.33.Final</netty4.version> 79 <netty4.version>4.0.33.Final</netty4.version>
80 <!-- TODO: replace with final release version when it is out --> 80 <!-- TODO: replace with final release version when it is out -->
81 <atomix.version>1.0.0-rc3</atomix.version> 81 <atomix.version>1.0.0-rc3</atomix.version>
82 + <atomix.copycat.version>1.0.0-rc6</atomix.copycat.version>
82 <copycat.version>0.5.1.onos</copycat.version> 83 <copycat.version>0.5.1.onos</copycat.version>
83 <openflowj.version>0.9.2.onos</openflowj.version> 84 <openflowj.version>0.9.2.onos</openflowj.version>
84 <onos-maven-plugin.version>1.9</onos-maven-plugin.version> 85 <onos-maven-plugin.version>1.9</onos-maven-plugin.version>
......
...@@ -50,6 +50,18 @@ ...@@ -50,6 +50,18 @@
50 </dependency> 50 </dependency>
51 51
52 <dependency> 52 <dependency>
53 + <groupId>io.atomix.copycat</groupId>
54 + <artifactId>copycat-client</artifactId>
55 + <version>${atomix.copycat.version}</version>
56 + </dependency>
57 +
58 + <dependency>
59 + <groupId>io.atomix.copycat</groupId>
60 + <artifactId>copycat-server</artifactId>
61 + <version>${atomix.copycat.version}</version>
62 + </dependency>
63 +
64 + <dependency>
53 <!-- FIXME once fixes get merged to upstream --> 65 <!-- FIXME once fixes get merged to upstream -->
54 <groupId>org.onosproject</groupId> 66 <groupId>org.onosproject</groupId>
55 <artifactId>copycat-api</artifactId> 67 <artifactId>copycat-api</artifactId>
......