blob: f3cb76ae862aeadecb50246320ec7469bc8ba299 [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>
14 <repository>
15 <id>central</id>
16 <name>Maven Central repository</name>
17 <url>http://repo1.maven.org/maven2</url>
18 </repository>
19 <repository>
20 <id>maven-restlet</id>
21 <name>Public online Restlet repository</name>
22 <url>http://maven.restlet.org</url>
23 </repository>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070024 </repositories>
25 <properties>
26 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
yoshi2fd4c7e2013-11-22 15:47:55 -080027 <powermock.version>1.5.1</powermock.version>
Pankaj Berde37d6d4d2013-12-03 10:12:56 -080028 <restlet.version>2.1.4</restlet.version>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -070029 <cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -070030 <findbugs-plugin.version>2.5.3</findbugs-plugin.version>
31 <findbugs.effort>Max</findbugs.effort>
32 <findbugs.excludeFilterFile>conf/findbugs/exclude.xml</findbugs.excludeFilterFile>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -070033 <checkstyle-plugin.version>2.12</checkstyle-plugin.version>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -080034 <!-- To publish javadoc to github,
35 uncomment com.github.github site-maven-plugin and
36 see https://github.com/OPENNETWORKINGLAB/ONOS/pull/425
37 <github.global.server>github</github.global.server>
38 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070039 </properties>
40 <build>
41 <plugins>
42 <plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -080043 <!-- Note: the checkstyle configuration is also in the reporting section -->
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -070046 <version>${checkstyle-plugin.version}</version>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -080047 <configuration>
48 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
49 </configuration>
50 </plugin>
51 <plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070052 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-install-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -070054 <version>2.5.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070055 <executions>
56 </executions>
57 </plugin>
58 <!-- guice maven plugin for dependency injection inside maven -->
59 <plugin>
60 <groupId>org.apache.camel</groupId>
61 <artifactId>guice-maven-plugin</artifactId>
62 <version>2.11.0</version>
63 </plugin>
64 <!-- compile -->
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -070068 <version>3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070069 <configuration>
Yuta HIGUCHI641d9992013-12-18 16:40:45 -080070 <source>1.7</source>
71 <target>1.7</target>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070072 <encoding>UTF-8</encoding>
73 </configuration>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070074 <executions>
75 </executions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070076 </plugin>
77 <!-- test -->
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-surefire-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -070081 <version>2.16</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070082 <configuration>
83 <excludes>
84 <!-- exclude all test cases for now -->
85 <!-- <exclude>**/storage/tests/StorageTest.java</exclude> -->
86 <!-- <exclude>**/test/*</exclude> -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070087 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070088 <exclude>**/test/*</exclude>
89 <exclude>**/Test*.java</exclude>
90 <exclude>**/*Test.java</exclude>
91 <exclude>**/*TestCase.java</exclude>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070092 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070093 </excludes>
HIGUCHI Yuta71c96dd2013-10-20 17:15:56 -070094 <argLine>-XX:MaxPermSize=256m</argLine>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -080095 <redirectTestOutputToFile>true</redirectTestOutputToFile>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070096 </configuration>
97 </plugin>
98 <!-- exec:java -->
99 <plugin>
100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>exec-maven-plugin</artifactId>
102 <version>1.2.1</version>
103 <configuration>
HIGUCHI Yuta49cf4d22013-06-17 12:15:17 -0700104 <mainClass>net.onrc.onos.ofcontroller.core.Main</mainClass>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700105 </configuration>
106 <executions>
107 </executions>
108 </plugin>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200109 <!--<plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>build-helper-maven-plugin</artifactId>
112 <version>1.7</version>
113 <executions>
114 <execution>
115 <id>add-source</id>
116 <phase>generate-sources</phase>
117 <goals>
118 <goal>add-source</goal>
119 </goals>
120 <configuration>
121 <sources>
122 <source>lib/gen-java</source>
123 </sources>
124 </configuration>
125 </execution>
126 </executions>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200127 </plugin>-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-javadoc-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700131 <version>2.9.1</version>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700132 <configuration>
133 <charset>UTF-8</charset>
134 <locale>en</locale>
135 </configuration>
136 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700137<!-- Remove me when we're sure that system test no longer need JaCoCo
timlindberg8b13e702013-07-17 14:45:50 -0700138 <plugin>
139 <groupId>org.jacoco</groupId>
140 <artifactId>jacoco-maven-plugin</artifactId>
141 <version>0.6.3.201306030806</version>
timlindberg8b13e702013-07-17 14:45:50 -0700142 <executions>
143 <execution>
144 <id>jacoco-initialize</id>
145 <goals>
146 <goal>prepare-agent</goal>
147 </goals>
148 </execution>
149 <execution>
150 <id>jacoco-site</id>
151 <phase>package</phase>
152 <goals>
153 <goal>report</goal>
154 </goals>
155 </execution>
156 </executions>
157 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700158-->
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800159 <!--
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700160 <plugin>
161 <groupId>com.github.github</groupId>
162 <artifactId>site-maven-plugin</artifactId>
163 <version>0.8</version>
164 <configuration>
165 <message>Creating site for ${project.version}</message>
166 <dryRun>true</dryRun>
167 <repositoryName>ONOS</repositoryName>
168 <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800169 <path>javadoc/${project.version}/</path>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700170 </configuration>
171 <executions>
172 <execution>
173 <goals>
174 <goal>site</goal>
175 </goals>
176 <phase>site</phase>
177 </execution>
178 </executions>
179 </plugin>
Pavlin Radoslavova463e462013-12-13 15:18:50 -0800180 -->
Jonathan Hart2c61a502013-10-18 18:12:26 -0700181 <plugin>
182 <artifactId>maven-assembly-plugin</artifactId>
183 <configuration>
184 <descriptorRefs>
185 <descriptorRef>jar-with-dependencies</descriptorRef>
186 </descriptorRefs>
187 </configuration>
188 </plugin>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -0800189 <plugin>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-dependency-plugin</artifactId>
192 <version>2.8</version>
193 <executions>
194 <execution>
195 <id>build-classpath</id>
196 <phase>generate-sources</phase>
197 <goals>
198 <goal>build-classpath</goal>
199 </goals>
200 <configuration>
Yuta HIGUCHIb561efa2013-12-20 01:35:04 -0800201 <outputFile>${project.basedir}/.javacp</outputFile>
202 </configuration>
203 </execution>
204 </executions>
205 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700206 <plugin>
207 <groupId>org.codehaus.mojo</groupId>
208 <artifactId>cobertura-maven-plugin</artifactId>
209 <version>${cobertura-maven-plugin.version}</version>
210 <configuration>
211 <instrumentation>
212 <ignores>
213 <ignore>org.slf4j.*</ignore>
214 <ignore>com.tinkerpop.*</ignore>
215 </ignores>
216 <excludes>
217 <exclude>org/openflow/**/*.class</exclude>
218 <exclude>net/floodlightcontroller/**/web/**/*.class</exclude>
219 </excludes>
220 </instrumentation>
221 </configuration>
222 <executions>
223 <execution>
224 <goals>
225 <goal>clean</goal>
226 </goals>
227 </execution>
228 </executions>
229 </plugin>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700230 <!-- Note: the findbugs configuration is also in the reporting section -->
231 <plugin>
232 <groupId>org.codehaus.mojo</groupId>
233 <artifactId>findbugs-maven-plugin</artifactId>
234 <version>${findbugs-plugin.version}</version>
235 <configuration>
236 <effort>${findbugs.effort}</effort>
237 <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile>
238 </configuration>
239 </plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700240 </plugins>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800241 <pluginManagement>
242 <plugins>
243 <!--This plugin's configuration is used to store Eclipse m2e settings
244 only. It has no influence on the Maven build itself. -->
245 <plugin>
246 <groupId>org.eclipse.m2e</groupId>
247 <artifactId>lifecycle-mapping</artifactId>
248 <version>1.0.0</version>
249 <configuration>
250 <lifecycleMappingMetadata>
251 <pluginExecutions>
252 <pluginExecution>
253 <pluginExecutionFilter>
254 <groupId>
255 org.apache.maven.plugins
256 </groupId>
257 <artifactId>
258 maven-dependency-plugin
259 </artifactId>
260 <versionRange>[2.8,)</versionRange>
261 <goals>
262 <goal>build-classpath</goal>
263 </goals>
264 </pluginExecutionFilter>
265 <action>
266 <ignore></ignore>
267 </action>
268 </pluginExecution>
269 </pluginExecutions>
270 </lifecycleMappingMetadata>
271 </configuration>
272 </plugin>
273 </plugins>
274 </pluginManagement>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700275 </build>
276 <!-- for getting visualization reporting -->
277 <reporting>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700278 <excludeDefaults>true</excludeDefaults>
279 <outputDirectory>${project.build.directory}/site</outputDirectory>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700280 <plugins>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700281 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700282 <plugin>
283 <groupId>org.apache.camel</groupId>
284 <artifactId>guice-maven-plugin</artifactId>
285 <version>2.11.0</version>
286 </plugin>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700287 -->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700288 <plugin>
289 <groupId>org.apache.maven.plugins</groupId>
290 <artifactId>maven-project-info-reports-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700291 <version>2.7</version>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700292 <configuration>
293 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
294 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
295 </configuration>
296 <reportSets>
297 <reportSet>
298 <reports>
299 <report>dependencies</report>
HIGUCHI Yuta842b6f72013-10-08 14:19:48 -0700300 <!--report>maven-emma-plugin</report-->
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700301 <report>scm</report>
302 </reports>
303 </reportSet>
304 </reportSets>
305 </plugin>
306 <plugin>
307 <groupId>org.apache.maven.plugins</groupId>
308 <artifactId>maven-javadoc-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700309 <version>2.9.1</version>
Naoki Shiota1c393ce2013-06-28 22:55:14 -0700310 <configuration>
311 <charset>UTF-8</charset>
312 <locale>en</locale>
313 </configuration>
314 </plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800315 <plugin>
316 <!-- Note: the checkstyle configuration is also in the build section -->
317 <groupId>org.apache.maven.plugins</groupId>
318 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700319 <version>${checkstyle-plugin.version}</version>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800320 <configuration>
321 <configLocation>conf/checkstyle/sun_checks.xml</configLocation>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700322 <!--
323 Note: Exclusion definition exists in multiple places.
324 - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
325 - maven-checkstyle-plugin configuration in pom.xml
326 - maven-pmd-plugin configuration in pom.xml
327 -->
328 <excludes>**/RCProtos.java,**/RamCloudGraphProtos.java</excludes>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800329 </configuration>
330 <reportSets>
331 <reportSet>
332 <reports>
333 <report>checkstyle</report>
334 </reports>
335 </reportSet>
336 </reportSets>
337 </plugin>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700338 <!-- Note: the findbugs configuration is also in the build section -->
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800339 <plugin>
Ray Milkey8d3a2f02014-03-10 18:13:35 -0700340 <groupId>org.codehaus.mojo</groupId>
341 <artifactId>findbugs-maven-plugin</artifactId>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700342 <version>${findbugs-plugin.version}</version>
Ray Milkey8d3a2f02014-03-10 18:13:35 -0700343 <configuration>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700344 <effort>${findbugs.effort}</effort>
345 <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile>
Ray Milkey8d3a2f02014-03-10 18:13:35 -0700346 <reportPlugins>
347 <plugin>
348 <groupId>org.codehaus.mojo</groupId>
349 <artifactId>findbugs-maven-plugin</artifactId>
350 </plugin>
351 </reportPlugins>
352 </configuration>
353 </plugin>
354 <plugin>
355 <groupId>org.apache.maven.plugins</groupId>
356 <artifactId>maven-pmd-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700357 <version>3.1</version>
Yuta HIGUCHI6cab6382014-03-17 13:47:38 -0700358 <configuration>
359 <!--
360 Note: Exclusion definition exists in multiple places.
361 - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
362 - maven-checkstyle-plugin configuration in pom.xml
363 - maven-pmd-plugin configuration in pom.xml
364 -->
365 <excludes>
366 <exclude>**/RCProtos.java</exclude>
367 <exclude>**/RamCloudGraphProtos.java</exclude>
368 </excludes>
369 </configuration>
Ray Milkey8d3a2f02014-03-10 18:13:35 -0700370 </plugin>
371 <plugin>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800372 <groupId>org.apache.maven.plugins</groupId>
373 <artifactId>maven-jxr-plugin</artifactId>
Yuta HIGUCHI01c5ed92014-03-18 11:08:22 -0700374 <version>2.4</version>
Pavlin Radoslavov4f090a82013-12-13 18:45:45 -0800375 </plugin>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700376 <plugin>
377 <groupId>org.codehaus.mojo</groupId>
378 <artifactId>cobertura-maven-plugin</artifactId>
379 <version>${cobertura-maven-plugin.version}</version>
380 </plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700381 </plugins>
382 </reporting>
383 <dependencies>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800384 <!-- ONOS's direct dependencies -->
Yuta HIGUCHI5548a492013-10-24 00:39:23 -0700385 <dependency>
386 <groupId>com.esotericsoftware.kryo</groupId>
387 <artifactId>kryo</artifactId>
388 <version>2.22</version>
389 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700390 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800391 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700392 <groupId>com.thinkaurelius.titan</groupId>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800393 <artifactId>titan-core</artifactId>
Jonathan Hartf371e982014-01-15 10:02:50 -0800394 <version>0.4.2</version>
Jonathan Hart28182492013-06-13 15:22:03 +1200395 <exclusions>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800396 <exclusion>
Jonathan Hart28182492013-06-13 15:22:03 +1200397 <groupId>org.slf4j</groupId>
398 <artifactId>slf4j-log4j12</artifactId>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800399 </exclusion>
Jonathan Hart28182492013-06-13 15:22:03 +1200400 </exclusions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700401 </dependency>
402 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800403 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700404 <groupId>com.tinkerpop</groupId>
405 <artifactId>frames</artifactId>
Jonathan Hartf371e982014-01-15 10:02:50 -0800406 <version>2.4.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700407 </dependency>
408 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800409 <!-- remove me after BluePrint clean up -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700410 <groupId>com.tinkerpop.blueprints</groupId>
411 <artifactId>blueprints-core</artifactId>
Yuta HIGUCHIcc8b1012014-01-24 09:14:39 -0800412 <version>2.4.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700413 </dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800414 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800415 <!-- remove me after BluePrint clean up -->
416 <groupId>com.tinkerpop.rexster</groupId>
417 <artifactId>rexster-core</artifactId>
418 <version>2.4.0</version>
yoshi28bac132014-01-22 11:00:17 -0800419 </dependency>
420 <dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800421 <groupId>com.google.protobuf</groupId>
422 <artifactId>protobuf-java</artifactId>
423 <version>2.5.0</version>
yoshi28bac132014-01-22 11:00:17 -0800424 </dependency>
425 <dependency>
yoshi2fd4c7e2013-11-22 15:47:55 -0800426 <groupId>com.hazelcast</groupId>
427 <artifactId>hazelcast</artifactId>
428 <version>3.0.2</version>
429 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700430 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700431 <groupId>net.sf.json-lib</groupId>
432 <artifactId>json-lib</artifactId>
433 <version>2.4</version>
434 <classifier>jdk15</classifier>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700435 </dependency>
436 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700437 <groupId>org.restlet.jse</groupId>
438 <artifactId>org.restlet</artifactId>
439 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700440 </dependency>
441 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700442 <groupId>org.restlet.jse</groupId>
443 <artifactId>org.restlet.ext.slf4j</artifactId>
444 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700445 </dependency>
446 <dependency>
447 <groupId>org.codehaus.jackson</groupId>
448 <artifactId>jackson-core-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700449 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700450 </dependency>
451 <dependency>
452 <groupId>org.codehaus.jackson</groupId>
453 <artifactId>jackson-mapper-asl</artifactId>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700454 <version>1.9.13</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700455 </dependency>
456 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700457 <groupId>ch.qos.logback</groupId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700458 <artifactId>logback-classic</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700459 <version>1.0.13</version>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700460 <scope>runtime</scope>
461 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800462 <dependency>
463 <groupId>commons-configuration</groupId>
464 <artifactId>commons-configuration</artifactId>
465 <version>1.6</version>
466 </dependency>
467 <dependency>
468 <groupId>com.google.guava</groupId>
469 <artifactId>guava</artifactId>
470 <version>14.0.1</version>
471 </dependency>
472 <dependency>
473 <!-- Used in net.onrc.onos.ofcontroller.bgproute.RestClient.get(String), but not sure if it is really required -->
474 <groupId>commons-httpclient</groupId>
475 <artifactId>commons-httpclient</artifactId>
476 <version>3.1</version>
477 </dependency>
478 <dependency>
479 <groupId>org.apache.zookeeper</groupId>
480 <artifactId>zookeeper</artifactId>
481 <version>3.4.5</version>
482 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700483 <!-- Floodlight's dependencies -->
484 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700485 <groupId>org.slf4j</groupId>
486 <artifactId>slf4j-api</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700487 <version>1.7.5</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700488 </dependency>
489 <dependency>
490 <groupId>org.restlet.jse</groupId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700491 <artifactId>org.restlet.ext.jackson</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700492 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700493 </dependency>
494 <dependency>
495 <groupId>org.restlet.jse</groupId>
496 <artifactId>org.restlet.ext.simple</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700497 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700498 </dependency>
499 <dependency>
500 <groupId>org.simpleframework</groupId>
501 <artifactId>simple</artifactId>
502 <version>4.1.21</version>
503 </dependency>
504 <dependency>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700505 <groupId>io.netty</groupId>
506 <artifactId>netty-all</artifactId>
507 <version>4.0.8.Final</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700508 </dependency>
509 <dependency>
510 <groupId>args4j</groupId>
511 <artifactId>args4j</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700512 <version>2.0.25</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700513 </dependency>
514 <dependency>
515 <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
516 <artifactId>concurrentlinkedhashmap-lru</artifactId>
Pankaj Berde98478422013-09-10 13:53:26 -0700517 <version>1.4</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700518 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700519 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700520 <groupId>com.google.inject</groupId>
521 <artifactId>guice</artifactId>
522 <version>3.0</version>
523 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800524 <dependency>
525 <!-- dependency to old version of netty? -->
526 <groupId>org.jboss.netty</groupId>
527 <artifactId>netty</artifactId>
528 <version>3.2.7.Final</version>
529 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700530 <!-- Dependency for libraries used for testing -->
531 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700532 <groupId>junit</groupId>
533 <artifactId>junit</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700534 <version>4.11</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700535 <scope>test</scope>
536 </dependency>
537 <dependency>
Ray Milkey6688cd82014-03-11 16:40:46 -0700538 <groupId>org.hamcrest</groupId>
539 <artifactId>hamcrest-core</artifactId>
540 <version>1.3</version>
541 <scope>test</scope>
542 </dependency>
543 <dependency>
544 <groupId>org.hamcrest</groupId>
545 <artifactId>hamcrest-library</artifactId>
546 <version>1.3</version>
547 <scope>test</scope>
548 </dependency>
549 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700550 <groupId>org.easymock</groupId>
551 <artifactId>easymock</artifactId>
yoshif5a6a502013-11-25 09:30:35 -0800552 <version>3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700553 <scope>test</scope>
554 </dependency>
555 <dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700556 <groupId>org.powermock</groupId>
557 <artifactId>powermock-module-junit4</artifactId>
558 <version>${powermock.version}</version>
559 <scope>test</scope>
560 </dependency>
561 <dependency>
562 <groupId>org.powermock</groupId>
563 <artifactId>powermock-api-easymock</artifactId>
564 <version>${powermock.version}</version>
565 <scope>test</scope>
566 </dependency>
Yuta HIGUCHI824552a2014-03-07 13:01:06 -0800567 <dependency>
568 <groupId>commons-io</groupId>
569 <artifactId>commons-io</artifactId>
570 <version>2.1</version>
571 <scope>test</scope>
572 </dependency>
Jonathan Hart116b1fe2014-03-14 18:53:47 -0700573 <dependency>
574 <groupId>org.apache.curator</groupId>
575 <artifactId>curator-framework</artifactId>
576 <version>2.4.1</version>
577 </dependency>
578 <dependency>
579 <groupId>org.apache.curator</groupId>
580 <artifactId>curator-client</artifactId>
581 <version>2.4.1</version>
582 </dependency>
583 <dependency>
584 <groupId>org.apache.curator</groupId>
585 <artifactId>curator-recipes</artifactId>
586 <version>2.4.1</version>
587 </dependency>
588 <dependency>
589 <groupId>org.apache.curator</groupId>
590 <artifactId>curator-x-discovery</artifactId>
591 <version>2.4.1</version>
592 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700593 </dependencies>
Yuta HIGUCHI889958b2014-03-12 12:05:47 -0700594 <profiles>
595 <!-- Jenkins by default defines a property BUILD_NUMBER which is used to
596 enable the profile. -->
597 <profile>
598 <id>jenkins</id>
599 <activation>
600 <property>
601 <name>env.BUILD_NUMBER</name>
602 </property>
603 </activation>
604 <build>
605 <plugins>
606 <plugin>
607 <groupId>org.codehaus.mojo</groupId>
608 <artifactId>cobertura-maven-plugin</artifactId>
609 <version>${cobertura-maven-plugin.version}</version>
610 <configuration>
611 <formats>
612 <format>xml</format>
613 </formats>
614 </configuration>
615 <executions>
616 <execution>
617 <phase>package</phase>
618 <goals>
619 <goal>cobertura</goal>
620 </goals>
621 </execution>
622 </executions>
623 </plugin>
624 </plugins>
625 </build>
626 </profile>
627 </profiles>
Pankaj Berde85c58f92013-10-03 18:26:08 -0700628</project>