blob: c1fa36bd8b8ca2e8292b75e126125286b39bb055 [file] [log] [blame]
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -07001<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <prerequisites>
5 <maven>3.0.4</maven>
6 </prerequisites>
7 <groupId>net.onrc.onos</groupId>
Pankaj Berdebbd38612013-06-22 05:59:12 -07008 <artifactId>onos</artifactId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -07009 <version>0.1.0</version>
10 <packaging>jar</packaging>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -080011 <name>ONOS-RAMCloud</name>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070012 <url>http://onlab.us/</url>
13 <repositories>
Yuta HIGUCHId62fb872014-01-02 10:40:32 -080014 <!-- In Project repository -->
15 <repository>
16 <id>in-project</id>
17 <name>In Project Repo</name>
18 <url>file://${project.basedir}/repo</url>
19 </repository>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070020 <repository>
21 <id>central</id>
22 <name>Maven Central repository</name>
23 <url>http://repo1.maven.org/maven2</url>
24 </repository>
25 <repository>
26 <id>maven-restlet</id>
27 <name>Public online Restlet repository</name>
28 <url>http://maven.restlet.org</url>
29 </repository>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070030 </repositories>
31 <properties>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
yoshi2fd4c7e2013-11-22 15:47:55 -080033 <powermock.version>1.5.1</powermock.version>
Pankaj Berde37d6d4d2013-12-03 10:12:56 -080034 <restlet.version>2.1.4</restlet.version>
Pavlin Radoslavova463e462013-12-13 15:18:50 -080035 <!-- <github.global.server>github</github.global.server> -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070036 </properties>
37 <build>
38 <plugins>
39 <plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -080040 <!-- Note: the checkstyle configuration is also in the reporting section -->
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-checkstyle-plugin</artifactId>
43 <version>2.11</version>
44 <configuration>
45 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
46 </configuration>
47 </plugin>
48 <plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070049 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-install-plugin</artifactId>
51 <version>2.3.1</version>
52 <executions>
53 </executions>
54 </plugin>
55 <!-- guice maven plugin for dependency injection inside maven -->
56 <plugin>
57 <groupId>org.apache.camel</groupId>
58 <artifactId>guice-maven-plugin</artifactId>
59 <version>2.11.0</version>
60 </plugin>
61 <!-- compile -->
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
65 <version>2.3.2</version>
66 <configuration>
Yuta HIGUCHI641d9992013-12-18 16:40:45 -080067 <source>1.7</source>
68 <target>1.7</target>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070069 <encoding>UTF-8</encoding>
70 </configuration>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070071 <executions>
72 </executions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070073 </plugin>
74 <!-- test -->
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-surefire-plugin</artifactId>
78 <version>2.12</version>
79 <configuration>
80 <excludes>
81 <!-- exclude all test cases for now -->
82 <!-- <exclude>**/storage/tests/StorageTest.java</exclude> -->
83 <!-- <exclude>**/test/*</exclude> -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070084 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070085 <exclude>**/test/*</exclude>
86 <exclude>**/Test*.java</exclude>
87 <exclude>**/*Test.java</exclude>
88 <exclude>**/*TestCase.java</exclude>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070089 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070090 </excludes>
HIGUCHI Yuta71c96dd2013-10-20 17:15:56 -070091 <argLine>-XX:MaxPermSize=256m</argLine>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070092 </configuration>
93 </plugin>
94 <!-- exec:java -->
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>exec-maven-plugin</artifactId>
98 <version>1.2.1</version>
99 <configuration>
HIGUCHI Yuta49cf4d22013-06-17 12:15:17 -0700100 <mainClass>net.onrc.onos.ofcontroller.core.Main</mainClass>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700101 </configuration>
102 <executions>
103 </executions>
104 </plugin>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200105 <!--<plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>build-helper-maven-plugin</artifactId>
108 <version>1.7</version>
109 <executions>
110 <execution>
111 <id>add-source</id>
112 <phase>generate-sources</phase>
113 <goals>
114 <goal>add-source</goal>
115 </goals>
116 <configuration>
117 <sources>
118 <source>lib/gen-java</source>
119 </sources>
120 </configuration>
121 </execution>
122 </executions>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200123 </plugin>-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-javadoc-plugin</artifactId>
127 <version>2.9</version>
128 <configuration>
129 <charset>UTF-8</charset>
130 <locale>en</locale>
131 </configuration>
132 </plugin>
timlindberg8b13e702013-07-17 14:45:50 -0700133 <plugin>
134 <groupId>org.jacoco</groupId>
135 <artifactId>jacoco-maven-plugin</artifactId>
136 <version>0.6.3.201306030806</version>
137 <configuration>
138 <destfile>${basedir}/target/jacoco/jacoco.exec</destfile>
139 <datafile>${basedir}/target/jacoco/jacoco.exec</datafile>
140 </configuration>
141 <executions>
142 <execution>
143 <id>jacoco-initialize</id>
144 <goals>
145 <goal>prepare-agent</goal>
146 </goals>
147 </execution>
148 <execution>
149 <id>jacoco-site</id>
150 <phase>package</phase>
151 <goals>
152 <goal>report</goal>
153 </goals>
154 </execution>
155 </executions>
156 </plugin>
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800157 <!--
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700158 <plugin>
159 <groupId>com.github.github</groupId>
160 <artifactId>site-maven-plugin</artifactId>
161 <version>0.8</version>
162 <configuration>
163 <message>Creating site for ${project.version}</message>
164 <dryRun>true</dryRun>
165 <repositoryName>ONOS</repositoryName>
166 <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner>
167 </configuration>
168 <executions>
169 <execution>
170 <goals>
171 <goal>site</goal>
172 </goals>
173 <phase>site</phase>
174 </execution>
175 </executions>
176 </plugin>
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800177 -->
Jonathan Hart2c61a502013-10-18 18:12:26 -0700178 <plugin>
179 <artifactId>maven-assembly-plugin</artifactId>
180 <configuration>
181 <descriptorRefs>
182 <descriptorRef>jar-with-dependencies</descriptorRef>
183 </descriptorRefs>
184 </configuration>
185 </plugin>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -0800186 <plugin>
187 <groupId>org.apache.maven.plugins</groupId>
188 <artifactId>maven-dependency-plugin</artifactId>
189 <version>2.8</version>
190 <executions>
191 <execution>
192 <id>build-classpath</id>
193 <phase>generate-sources</phase>
194 <goals>
195 <goal>build-classpath</goal>
196 </goals>
197 <configuration>
198 <!-- configure the plugin here -->
199 <outputFile>${project.basedir}/.javacp</outputFile>
200 </configuration>
201 </execution>
202 </executions>
203 </plugin>
204
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700205 </plugins>
206 </build>
207 <!-- for getting visualization reporting -->
208 <reporting>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700209 <excludeDefaults>true</excludeDefaults>
210 <outputDirectory>${project.build.directory}/site</outputDirectory>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700211 <plugins>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700212 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700213 <plugin>
214 <groupId>org.apache.camel</groupId>
215 <artifactId>guice-maven-plugin</artifactId>
216 <version>2.11.0</version>
217 </plugin>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700218 -->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700219 <plugin>
220 <groupId>org.apache.maven.plugins</groupId>
221 <artifactId>maven-project-info-reports-plugin</artifactId>
222 <version>2.4</version>
223 <configuration>
224 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
225 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
226 </configuration>
227 <reportSets>
228 <reportSet>
229 <reports>
230 <report>dependencies</report>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700231 <!--report>maven-emma-plugin</report-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700232 <report>scm</report>
233 </reports>
234 </reportSet>
235 </reportSets>
236 </plugin>
237 <plugin>
238 <groupId>org.apache.maven.plugins</groupId>
239 <artifactId>maven-javadoc-plugin</artifactId>
240 <version>2.9</version>
241 <configuration>
242 <charset>UTF-8</charset>
243 <locale>en</locale>
244 </configuration>
245 </plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800246 <plugin>
247 <!-- Note: the checkstyle configuration is also in the build section -->
248 <groupId>org.apache.maven.plugins</groupId>
249 <artifactId>maven-checkstyle-plugin</artifactId>
250 <version>2.11</version>
251 <configuration>
252 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
253 </configuration>
254 <reportSets>
255 <reportSet>
256 <reports>
257 <report>checkstyle</report>
258 </reports>
259 </reportSet>
260 </reportSets>
261 </plugin>
262 <plugin>
263 <groupId>org.apache.maven.plugins</groupId>
264 <artifactId>maven-jxr-plugin</artifactId>
265 <version>2.3</version>
266 </plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700267 </plugins>
268 </reporting>
269 <dependencies>
Yuta HIGUCHId62fb872014-01-02 10:40:32 -0800270 <!-- Commenting out original kryo 2.X
271 and using shaded version (net.onrc.onos.kryo2)
272 to workaround conflict with kryo 1.X in titan's dependency.(#443)
273 -->
Yuta HIGUCHI5548a492013-10-24 00:39:23 -0700274 <!--
275 <dependency>
276 <groupId>com.esotericsoftware.kryo</groupId>
277 <artifactId>kryo</artifactId>
278 <version>2.22</version>
279 </dependency>
280 -->
281 <dependency>
282 <groupId>net.onrc.onos</groupId>
283 <artifactId>kryo2</artifactId>
284 <version>2.22</version>
285 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700286 <!-- ONOS's direct dependencies -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700287 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700288 <groupId>org.apache.cassandra</groupId>
289 <artifactId>apache-cassandra</artifactId>
290 <version>1.2.4</version>
291 <type>pom</type>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700292 </dependency>
293 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700294 <groupId>com.thinkaurelius.titan</groupId>
295 <artifactId>titan-all</artifactId>
296 <version>0.2.1</version>
Jonathan Hart28182492013-06-13 15:22:03 +1200297 <exclusions>
298 <exclusion>
299 <groupId>org.slf4j</groupId>
300 <artifactId>slf4j-log4j12</artifactId>
301 </exclusion>
302 </exclusions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700303 </dependency>
304 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700305 <groupId>com.tinkerpop</groupId>
306 <artifactId>frames</artifactId>
307 <version>2.3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700308 </dependency>
309 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700310 <groupId>com.tinkerpop.blueprints</groupId>
311 <artifactId>blueprints-core</artifactId>
yoshi240f62c2013-12-02 19:48:40 -0800312 <version>2.4.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700313 </dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800314 <dependency>
yoshi28bac132014-01-22 11:00:17 -0800315 <groupId>com.tinkerpop.rexster</groupId>
316 <artifactId>rexster-core</artifactId>
317 <version>2.4.0</version>
318 </dependency>
319 <dependency>
320 <groupId>com.tinkerpop.blueprints</groupId>
321 <artifactId>blueprints-test</artifactId>
322 <version>2.4.0</version>
323 </dependency>
324 <dependency>
325 <groupId>com.google.protobuf</groupId>
326 <artifactId>protobuf-java</artifactId>
327 <version>2.5.0</version>
328 </dependency>
329 <dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800330 <groupId>com.hazelcast</groupId>
331 <artifactId>hazelcast</artifactId>
332 <version>3.0.2</version>
333 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700334 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700335 <groupId>net.sf.json-lib</groupId>
336 <artifactId>json-lib</artifactId>
337 <version>2.4</version>
338 <classifier>jdk15</classifier>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700339 </dependency>
340 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700341 <groupId>org.restlet.jse</groupId>
342 <artifactId>org.restlet</artifactId>
343 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700344 </dependency>
345 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700346 <groupId>org.restlet.jse</groupId>
347 <artifactId>org.restlet.ext.slf4j</artifactId>
348 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700349 </dependency>
350 <dependency>
351 <groupId>org.codehaus.jackson</groupId>
352 <artifactId>jackson-core-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700353 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700354 </dependency>
355 <dependency>
356 <groupId>org.codehaus.jackson</groupId>
357 <artifactId>jackson-mapper-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700358 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700359 </dependency>
360 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700361 <groupId>ch.qos.logback</groupId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700362 <artifactId>logback-classic</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700363 <version>1.0.13</version>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700364 <scope>runtime</scope>
365 </dependency>
366 <!-- Floodlight's dependencies -->
367 <dependency>
368 <groupId>net.sourceforge.cobertura</groupId>
369 <artifactId>cobertura</artifactId>
370 <version>1.9.4.1</version>
371 </dependency>
372 <!--
373 <dependency>
374 <groupId>com.google.guava</groupId>
375 <artifactId>guava</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700376 <version>14.0.1</version>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700377 </dependency>
378 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700379 <dependency>
380 <groupId>org.slf4j</groupId>
381 <artifactId>slf4j-api</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700382 <version>1.7.5</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700383 </dependency>
384 <dependency>
385 <groupId>org.restlet.jse</groupId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700386 <artifactId>org.restlet.ext.jackson</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700387 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700388 </dependency>
389 <dependency>
390 <groupId>org.restlet.jse</groupId>
391 <artifactId>org.restlet.ext.simple</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700392 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700393 </dependency>
394 <dependency>
395 <groupId>org.simpleframework</groupId>
396 <artifactId>simple</artifactId>
397 <version>4.1.21</version>
398 </dependency>
399 <dependency>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700400 <groupId>io.netty</groupId>
401 <artifactId>netty-all</artifactId>
402 <version>4.0.8.Final</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700403 </dependency>
404 <dependency>
405 <groupId>args4j</groupId>
406 <artifactId>args4j</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700407 <version>2.0.25</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700408 </dependency>
409 <dependency>
410 <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
411 <artifactId>concurrentlinkedhashmap-lru</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700412 <version>1.4</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700413 </dependency>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200414 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700415 <groupId>org.python</groupId>
416 <artifactId>jython-standalone</artifactId>
417 <version>2.5.2</version>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200418 </dependency>-->
Jonathan Hart72f72f62013-06-12 09:54:19 +1200419 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700420 <groupId>org.apache.thrift</groupId>
421 <artifactId>libthrift</artifactId>
422 <version>0.7.0</version>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200423 </dependency>-->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700424 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700425 <groupId>com.google.inject</groupId>
426 <artifactId>guice</artifactId>
427 <version>3.0</version>
428 </dependency>
429 <!-- Dependency for libraries used for testing -->
430 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700431 <groupId>junit</groupId>
432 <artifactId>junit</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700433 <version>4.11</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700434 <scope>test</scope>
435 </dependency>
436 <dependency>
437 <groupId>org.easymock</groupId>
438 <artifactId>easymock</artifactId>
yoshif5a6a502013-11-25 09:30:35 -0800439 <version>3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700440 <scope>test</scope>
441 </dependency>
442 <dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700443 <groupId>org.powermock</groupId>
444 <artifactId>powermock-module-junit4</artifactId>
445 <version>${powermock.version}</version>
446 <scope>test</scope>
447 </dependency>
448 <dependency>
449 <groupId>org.powermock</groupId>
450 <artifactId>powermock-api-easymock</artifactId>
451 <version>${powermock.version}</version>
452 <scope>test</scope>
453 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700454 <!--
455 <dependency>
456 <groupId>org.objenesis</groupId>
457 <artifactId>objenesis</artifactId>
458 <version>1.2</version>
459 <scope>test</scope>
460 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700461 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700462 <groupId>cglib</groupId>
463 <artifactId>cglib-nodep</artifactId>
464 <version>2.2.2</version>
465 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700466 -->
HIGUCHI Yuta1ec484a2013-06-06 15:34:01 -0700467 <!-- dependency to locally modified version -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700468 <dependency>
469 <groupId>com.netflix.curator</groupId>
470 <artifactId>curator-framework</artifactId>
471 <version>1.3.5-SNAPSHOT</version>
472 </dependency>
473 <dependency>
474 <groupId>com.netflix.curator</groupId>
475 <artifactId>curator-client</artifactId>
476 <version>1.3.5-SNAPSHOT</version>
477 </dependency>
478 <dependency>
479 <groupId>com.netflix.curator</groupId>
480 <artifactId>curator-recipes</artifactId>
481 <version>1.3.5-SNAPSHOT</version>
482 </dependency>
483 <dependency>
484 <groupId>com.netflix.curator</groupId>
485 <artifactId>curator-x-discovery</artifactId>
486 <version>1.3.5-SNAPSHOT</version>
487 </dependency>
488 <!--
489 <dependency>
490 <groupId>net.floodlightcontroller</groupId>
491 <artifactId>packetstreamer-thrift</artifactId>
492 <version>0.1.0</version>
493 </dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800494 <dependency>
495 <groupId>com.tinkerpop.blueprints.impls.ramcloud</groupId>
496 <artifactId>blueprints-ramcloud-graph</artifactId>
yoshi868af422013-12-02 20:00:50 -0800497 <version>2.5.0</version>
yoshi2fd4c7e2013-11-22 15:47:55 -0800498 </dependency>
yoshi28bac132014-01-22 11:00:17 -0800499 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700500 </dependencies>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700501</project>