blob: 18ea3db45fd52406704753c0f9cb6cf16bf21f23 [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 -->
Jonathan Hart116b1fe2014-03-14 18:53:47 -070015 <!--<repository>
Yuta HIGUCHId62fb872014-01-02 10:40:32 -080016 <id>in-project</id>
17 <name>In Project Repo</name>
18 <url>file://${project.basedir}/repo</url>
Jonathan Hart116b1fe2014-03-14 18:53:47 -070019 </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>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -070035 <cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -080036 <!-- To publish javadoc to github,
37 uncomment com.github.github site-maven-plugin and
38 see https://github.com/OPENNETWORKINGLAB/ONOS/pull/425
39 <github.global.server>github</github.global.server>
40 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070041 </properties>
42 <build>
43 <plugins>
44 <plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -080045 <!-- Note: the checkstyle configuration is also in the reporting section -->
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-checkstyle-plugin</artifactId>
48 <version>2.11</version>
49 <configuration>
50 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
51 </configuration>
52 </plugin>
53 <plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070054 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-install-plugin</artifactId>
56 <version>2.3.1</version>
57 <executions>
58 </executions>
59 </plugin>
60 <!-- guice maven plugin for dependency injection inside maven -->
61 <plugin>
62 <groupId>org.apache.camel</groupId>
63 <artifactId>guice-maven-plugin</artifactId>
64 <version>2.11.0</version>
65 </plugin>
66 <!-- compile -->
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <version>2.3.2</version>
71 <configuration>
Yuta HIGUCHI641d9992013-12-18 16:40:45 -080072 <source>1.7</source>
73 <target>1.7</target>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070074 <encoding>UTF-8</encoding>
75 </configuration>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070076 <executions>
77 </executions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070078 </plugin>
79 <!-- test -->
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 <version>2.12</version>
84 <configuration>
85 <excludes>
86 <!-- exclude all test cases for now -->
87 <!-- <exclude>**/storage/tests/StorageTest.java</exclude> -->
88 <!-- <exclude>**/test/*</exclude> -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070089 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070090 <exclude>**/test/*</exclude>
91 <exclude>**/Test*.java</exclude>
92 <exclude>**/*Test.java</exclude>
93 <exclude>**/*TestCase.java</exclude>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070094 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070095 </excludes>
HIGUCHI Yuta71c96dd2013-10-20 17:15:56 -070096 <argLine>-XX:MaxPermSize=256m</argLine>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -080097 <redirectTestOutputToFile>true</redirectTestOutputToFile>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070098 </configuration>
99 </plugin>
100 <!-- exec:java -->
101 <plugin>
102 <groupId>org.codehaus.mojo</groupId>
103 <artifactId>exec-maven-plugin</artifactId>
104 <version>1.2.1</version>
105 <configuration>
HIGUCHI Yuta49cf4d22013-06-17 12:15:17 -0700106 <mainClass>net.onrc.onos.ofcontroller.core.Main</mainClass>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700107 </configuration>
108 <executions>
109 </executions>
110 </plugin>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200111 <!--<plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>build-helper-maven-plugin</artifactId>
114 <version>1.7</version>
115 <executions>
116 <execution>
117 <id>add-source</id>
118 <phase>generate-sources</phase>
119 <goals>
120 <goal>add-source</goal>
121 </goals>
122 <configuration>
123 <sources>
124 <source>lib/gen-java</source>
125 </sources>
126 </configuration>
127 </execution>
128 </executions>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200129 </plugin>-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-javadoc-plugin</artifactId>
133 <version>2.9</version>
134 <configuration>
135 <charset>UTF-8</charset>
136 <locale>en</locale>
137 </configuration>
138 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700139<!-- Remove me when we're sure that system test no longer need JaCoCo
timlindberg8b13e702013-07-17 14:45:50 -0700140 <plugin>
141 <groupId>org.jacoco</groupId>
142 <artifactId>jacoco-maven-plugin</artifactId>
143 <version>0.6.3.201306030806</version>
timlindberg8b13e702013-07-17 14:45:50 -0700144 <executions>
145 <execution>
146 <id>jacoco-initialize</id>
147 <goals>
148 <goal>prepare-agent</goal>
149 </goals>
150 </execution>
151 <execution>
152 <id>jacoco-site</id>
153 <phase>package</phase>
154 <goals>
155 <goal>report</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700160-->
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800161 <!--
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700162 <plugin>
163 <groupId>com.github.github</groupId>
164 <artifactId>site-maven-plugin</artifactId>
165 <version>0.8</version>
166 <configuration>
167 <message>Creating site for ${project.version}</message>
168 <dryRun>true</dryRun>
169 <repositoryName>ONOS</repositoryName>
170 <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800171 <path>javadoc/${project.version}/</path>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700172 </configuration>
173 <executions>
174 <execution>
175 <goals>
176 <goal>site</goal>
177 </goals>
178 <phase>site</phase>
179 </execution>
180 </executions>
181 </plugin>
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800182 -->
Jonathan Hart2c61a502013-10-18 18:12:26 -0700183 <plugin>
184 <artifactId>maven-assembly-plugin</artifactId>
185 <configuration>
186 <descriptorRefs>
187 <descriptorRef>jar-with-dependencies</descriptorRef>
188 </descriptorRefs>
189 </configuration>
190 </plugin>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -0800191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-dependency-plugin</artifactId>
194 <version>2.8</version>
195 <executions>
196 <execution>
197 <id>build-classpath</id>
198 <phase>generate-sources</phase>
199 <goals>
200 <goal>build-classpath</goal>
201 </goals>
202 <configuration>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -0800203 <outputFile>${project.basedir}/.javacp</outputFile>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700208 <plugin>
209 <groupId>org.codehaus.mojo</groupId>
210 <artifactId>cobertura-maven-plugin</artifactId>
211 <version>${cobertura-maven-plugin.version}</version>
212 <configuration>
213 <instrumentation>
214 <ignores>
215 <ignore>org.slf4j.*</ignore>
216 <ignore>com.tinkerpop.*</ignore>
217 </ignores>
218 <excludes>
219 <exclude>org/openflow/**/*.class</exclude>
220 <exclude>net/floodlightcontroller/**/web/**/*.class</exclude>
221 </excludes>
222 </instrumentation>
223 </configuration>
224 <executions>
225 <execution>
226 <goals>
227 <goal>clean</goal>
228 </goals>
229 </execution>
230 </executions>
231 </plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700232 </plugins>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800233 <pluginManagement>
234 <plugins>
235 <!--This plugin's configuration is used to store Eclipse m2e settings
236 only. It has no influence on the Maven build itself. -->
237 <plugin>
238 <groupId>org.eclipse.m2e</groupId>
239 <artifactId>lifecycle-mapping</artifactId>
240 <version>1.0.0</version>
241 <configuration>
242 <lifecycleMappingMetadata>
243 <pluginExecutions>
244 <pluginExecution>
245 <pluginExecutionFilter>
246 <groupId>
247 org.apache.maven.plugins
248 </groupId>
249 <artifactId>
250 maven-dependency-plugin
251 </artifactId>
252 <versionRange>[2.8,)</versionRange>
253 <goals>
254 <goal>build-classpath</goal>
255 </goals>
256 </pluginExecutionFilter>
257 <action>
258 <ignore></ignore>
259 </action>
260 </pluginExecution>
261 </pluginExecutions>
262 </lifecycleMappingMetadata>
263 </configuration>
264 </plugin>
265 </plugins>
266 </pluginManagement>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700267 </build>
268 <!-- for getting visualization reporting -->
269 <reporting>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700270 <excludeDefaults>true</excludeDefaults>
271 <outputDirectory>${project.build.directory}/site</outputDirectory>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700272 <plugins>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700273 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700274 <plugin>
275 <groupId>org.apache.camel</groupId>
276 <artifactId>guice-maven-plugin</artifactId>
277 <version>2.11.0</version>
278 </plugin>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700279 -->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700280 <plugin>
281 <groupId>org.apache.maven.plugins</groupId>
282 <artifactId>maven-project-info-reports-plugin</artifactId>
283 <version>2.4</version>
284 <configuration>
285 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
286 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
287 </configuration>
288 <reportSets>
289 <reportSet>
290 <reports>
291 <report>dependencies</report>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700292 <!--report>maven-emma-plugin</report-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700293 <report>scm</report>
294 </reports>
295 </reportSet>
296 </reportSets>
297 </plugin>
298 <plugin>
299 <groupId>org.apache.maven.plugins</groupId>
300 <artifactId>maven-javadoc-plugin</artifactId>
301 <version>2.9</version>
302 <configuration>
303 <charset>UTF-8</charset>
304 <locale>en</locale>
305 </configuration>
306 </plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800307 <plugin>
308 <!-- Note: the checkstyle configuration is also in the build section -->
309 <groupId>org.apache.maven.plugins</groupId>
310 <artifactId>maven-checkstyle-plugin</artifactId>
311 <version>2.11</version>
312 <configuration>
313 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
314 </configuration>
315 <reportSets>
316 <reportSet>
317 <reports>
318 <report>checkstyle</report>
319 </reports>
320 </reportSet>
321 </reportSets>
322 </plugin>
323 <plugin>
Ray Milkey8d3a2f02014-03-10 18:13:35 -0700324 <groupId>org.codehaus.mojo</groupId>
325 <artifactId>findbugs-maven-plugin</artifactId>
326 <version>2.5.3</version>
327 <configuration>
328 <reportPlugins>
329 <plugin>
330 <groupId>org.codehaus.mojo</groupId>
331 <artifactId>findbugs-maven-plugin</artifactId>
332 </plugin>
333 </reportPlugins>
334 </configuration>
335 </plugin>
336 <plugin>
337 <groupId>org.apache.maven.plugins</groupId>
338 <artifactId>maven-pmd-plugin</artifactId>
339 <version>3.0.1</version>
340 </plugin>
341 <plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800342 <groupId>org.apache.maven.plugins</groupId>
343 <artifactId>maven-jxr-plugin</artifactId>
344 <version>2.3</version>
345 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700346 <plugin>
347 <groupId>org.codehaus.mojo</groupId>
348 <artifactId>cobertura-maven-plugin</artifactId>
349 <version>${cobertura-maven-plugin.version}</version>
350 </plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700351 </plugins>
352 </reporting>
353 <dependencies>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800354 <!-- ONOS's direct dependencies -->
Yuta HIGUCHI5548a492013-10-24 00:39:23 -0700355 <dependency>
356 <groupId>com.esotericsoftware.kryo</groupId>
357 <artifactId>kryo</artifactId>
358 <version>2.22</version>
359 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700360 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800361 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700362 <groupId>com.thinkaurelius.titan</groupId>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800363 <artifactId>titan-core</artifactId>
Jonathan Hartf371e982014-01-15 10:02:50 -0800364 <version>0.4.2</version>
Jonathan Hart28182492013-06-13 15:22:03 +1200365 <exclusions>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800366 <exclusion>
Jonathan Hart28182492013-06-13 15:22:03 +1200367 <groupId>org.slf4j</groupId>
368 <artifactId>slf4j-log4j12</artifactId>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800369 </exclusion>
Jonathan Hart28182492013-06-13 15:22:03 +1200370 </exclusions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700371 </dependency>
372 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800373 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700374 <groupId>com.tinkerpop</groupId>
375 <artifactId>frames</artifactId>
Jonathan Hartf371e982014-01-15 10:02:50 -0800376 <version>2.4.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700377 </dependency>
378 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800379 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700380 <groupId>com.tinkerpop.blueprints</groupId>
381 <artifactId>blueprints-core</artifactId>
Yuta HIGUCHIcc8b1012014-01-24 09:14:39 -0800382 <version>2.4.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700383 </dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800384 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800385 <!-- remove me after BluePrint clean up -->
386 <groupId>com.tinkerpop.rexster</groupId>
387 <artifactId>rexster-core</artifactId>
388 <version>2.4.0</version>
yoshi28bac132014-01-22 11:00:17 -0800389 </dependency>
390 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800391 <groupId>com.google.protobuf</groupId>
392 <artifactId>protobuf-java</artifactId>
393 <version>2.5.0</version>
yoshi28bac132014-01-22 11:00:17 -0800394 </dependency>
395 <dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800396 <groupId>com.hazelcast</groupId>
397 <artifactId>hazelcast</artifactId>
398 <version>3.0.2</version>
399 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700400 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700401 <groupId>net.sf.json-lib</groupId>
402 <artifactId>json-lib</artifactId>
403 <version>2.4</version>
404 <classifier>jdk15</classifier>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700405 </dependency>
406 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700407 <groupId>org.restlet.jse</groupId>
408 <artifactId>org.restlet</artifactId>
409 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700410 </dependency>
411 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700412 <groupId>org.restlet.jse</groupId>
413 <artifactId>org.restlet.ext.slf4j</artifactId>
414 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700415 </dependency>
416 <dependency>
417 <groupId>org.codehaus.jackson</groupId>
418 <artifactId>jackson-core-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700419 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700420 </dependency>
421 <dependency>
422 <groupId>org.codehaus.jackson</groupId>
423 <artifactId>jackson-mapper-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700424 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700425 </dependency>
426 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700427 <groupId>ch.qos.logback</groupId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700428 <artifactId>logback-classic</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700429 <version>1.0.13</version>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700430 <scope>runtime</scope>
431 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800432 <dependency>
433 <groupId>commons-configuration</groupId>
434 <artifactId>commons-configuration</artifactId>
435 <version>1.6</version>
436 </dependency>
437 <dependency>
438 <groupId>com.google.guava</groupId>
439 <artifactId>guava</artifactId>
440 <version>14.0.1</version>
441 </dependency>
442 <dependency>
443 <!-- Used in net.onrc.onos.ofcontroller.bgproute.RestClient.get(String), but not sure if it is really required -->
444 <groupId>commons-httpclient</groupId>
445 <artifactId>commons-httpclient</artifactId>
446 <version>3.1</version>
447 </dependency>
448 <dependency>
449 <groupId>org.apache.zookeeper</groupId>
450 <artifactId>zookeeper</artifactId>
451 <version>3.4.5</version>
452 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700453 <!-- Floodlight's dependencies -->
454 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700455 <groupId>org.slf4j</groupId>
456 <artifactId>slf4j-api</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700457 <version>1.7.5</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700458 </dependency>
459 <dependency>
460 <groupId>org.restlet.jse</groupId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700461 <artifactId>org.restlet.ext.jackson</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700462 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700463 </dependency>
464 <dependency>
465 <groupId>org.restlet.jse</groupId>
466 <artifactId>org.restlet.ext.simple</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700467 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700468 </dependency>
469 <dependency>
470 <groupId>org.simpleframework</groupId>
471 <artifactId>simple</artifactId>
472 <version>4.1.21</version>
473 </dependency>
474 <dependency>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700475 <groupId>io.netty</groupId>
476 <artifactId>netty-all</artifactId>
477 <version>4.0.8.Final</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700478 </dependency>
479 <dependency>
480 <groupId>args4j</groupId>
481 <artifactId>args4j</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700482 <version>2.0.25</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700483 </dependency>
484 <dependency>
485 <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
486 <artifactId>concurrentlinkedhashmap-lru</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700487 <version>1.4</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700488 </dependency>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200489 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700490 <groupId>org.python</groupId>
491 <artifactId>jython-standalone</artifactId>
492 <version>2.5.2</version>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200493 </dependency>-->
Jonathan Hart72f72f62013-06-12 09:54:19 +1200494 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700495 <groupId>org.apache.thrift</groupId>
496 <artifactId>libthrift</artifactId>
497 <version>0.7.0</version>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200498 </dependency>-->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700499 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700500 <groupId>com.google.inject</groupId>
501 <artifactId>guice</artifactId>
502 <version>3.0</version>
503 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800504 <dependency>
505 <!-- dependency to old version of netty? -->
506 <groupId>org.jboss.netty</groupId>
507 <artifactId>netty</artifactId>
508 <version>3.2.7.Final</version>
509 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700510 <!-- Dependency for libraries used for testing -->
511 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700512 <groupId>junit</groupId>
513 <artifactId>junit</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700514 <version>4.11</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700515 <scope>test</scope>
516 </dependency>
517 <dependency>
Ray Milkey6688cd82014-03-11 16:40:46 -0700518 <groupId>org.hamcrest</groupId>
519 <artifactId>hamcrest-core</artifactId>
520 <version>1.3</version>
521 <scope>test</scope>
522 </dependency>
523 <dependency>
524 <groupId>org.hamcrest</groupId>
525 <artifactId>hamcrest-library</artifactId>
526 <version>1.3</version>
527 <scope>test</scope>
528 </dependency>
529 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700530 <groupId>org.easymock</groupId>
531 <artifactId>easymock</artifactId>
yoshif5a6a502013-11-25 09:30:35 -0800532 <version>3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700533 <scope>test</scope>
534 </dependency>
535 <dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700536 <groupId>org.powermock</groupId>
537 <artifactId>powermock-module-junit4</artifactId>
538 <version>${powermock.version}</version>
539 <scope>test</scope>
540 </dependency>
541 <dependency>
542 <groupId>org.powermock</groupId>
543 <artifactId>powermock-api-easymock</artifactId>
544 <version>${powermock.version}</version>
545 <scope>test</scope>
546 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800547 <dependency>
548 <groupId>commons-io</groupId>
549 <artifactId>commons-io</artifactId>
550 <version>2.1</version>
551 <scope>test</scope>
552 </dependency>
Jonathan Hart116b1fe2014-03-14 18:53:47 -0700553 <dependency>
554 <groupId>org.apache.curator</groupId>
555 <artifactId>curator-framework</artifactId>
556 <version>2.4.1</version>
557 </dependency>
558 <dependency>
559 <groupId>org.apache.curator</groupId>
560 <artifactId>curator-client</artifactId>
561 <version>2.4.1</version>
562 </dependency>
563 <dependency>
564 <groupId>org.apache.curator</groupId>
565 <artifactId>curator-recipes</artifactId>
566 <version>2.4.1</version>
567 </dependency>
568 <dependency>
569 <groupId>org.apache.curator</groupId>
570 <artifactId>curator-x-discovery</artifactId>
571 <version>2.4.1</version>
572 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700573 <!--
574 <dependency>
575 <groupId>org.objenesis</groupId>
576 <artifactId>objenesis</artifactId>
577 <version>1.2</version>
578 <scope>test</scope>
579 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700580 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700581 <groupId>cglib</groupId>
582 <artifactId>cglib-nodep</artifactId>
583 <version>2.2.2</version>
584 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700585 -->
Jonathan Hart116b1fe2014-03-14 18:53:47 -0700586
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700587 <!--
588 <dependency>
589 <groupId>net.floodlightcontroller</groupId>
590 <artifactId>packetstreamer-thrift</artifactId>
591 <version>0.1.0</version>
592 </dependency>
593 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700594 </dependencies>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700595 <profiles>
596 <!-- Jenkins by default defines a property BUILD_NUMBER which is used to
597 enable the profile. -->
598 <profile>
599 <id>jenkins</id>
600 <activation>
601 <property>
602 <name>env.BUILD_NUMBER</name>
603 </property>
604 </activation>
605 <build>
606 <plugins>
607 <plugin>
608 <groupId>org.codehaus.mojo</groupId>
609 <artifactId>cobertura-maven-plugin</artifactId>
610 <version>${cobertura-maven-plugin.version}</version>
611 <configuration>
612 <formats>
613 <format>xml</format>
614 </formats>
615 </configuration>
616 <executions>
617 <execution>
618 <phase>package</phase>
619 <goals>
620 <goal>cobertura</goal>
621 </goals>
622 </execution>
623 </executions>
624 </plugin>
625 </plugins>
626 </build>
627 </profile>
628 </profiles>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700629</project>