blob: daeb33e4314233ec4c4a7b1353ae268c3121334b [file] [log] [blame]
alshabib522d9872014-08-15 10:35:16 -07001<?xml version="1.0" encoding="UTF-8"?>
tom09419512014-08-15 11:28:43 -07002<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
alshabib522d9872014-08-15 10:35:16 -07006
tom0eb04ca2014-08-25 14:34:51 -07007 <groupId>org.onlab.onos</groupId>
tom09419512014-08-15 11:28:43 -07008 <artifactId>onos</artifactId>
9 <packaging>pom</packaging>
10 <version>1.0.0-SNAPSHOT</version>
alshabib522d9872014-08-15 10:35:16 -070011
tom0eb04ca2014-08-25 14:34:51 -070012 <description>Open Networking Operating System root project</description>
tom09419512014-08-15 11:28:43 -070013
14 <modules>
tom0eb04ca2014-08-25 14:34:51 -070015 <module>tools/build/conf</module>
16 <module>utils</module>
tome2dc27a2014-09-09 12:41:21 -070017 <module>core</module>
tom0eb04ca2014-08-25 14:34:51 -070018 <module>web</module>
19 <module>cli</module>
20 <module>providers</module>
tomf8b8d672014-09-17 13:07:23 -070021 <module>openflow</module>
tom8bb16062014-09-12 14:47:46 -070022 <module>apps</module>
tom09419512014-08-15 11:28:43 -070023 <module>features</module>
tomaa49a1e2014-09-12 23:11:46 -070024 <module>tools/package/branding</module>
tom09419512014-08-15 11:28:43 -070025 </modules>
26
27 <url>http://onlab.us/</url>
28
29 <licenses>
30 <license>
31 <!-- TODO: Is this really our license scheme? -->
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 </license>
35 </licenses>
36
Yuta HIGUCHIe2efe722014-09-19 14:37:34 -070037 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 </properties>
40
tom0eb04ca2014-08-25 14:34:51 -070041 <dependencyManagement>
42 <dependencies>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <version>4.11</version>
47 <scope>test</scope>
48 </dependency>
tom09419512014-08-15 11:28:43 -070049
tom0eb04ca2014-08-25 14:34:51 -070050 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -070051 <groupId>org.hamcrest</groupId>
52 <artifactId>hamcrest-core</artifactId>
53 <version>1.3</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.hamcrest</groupId>
58 <artifactId>hamcrest-library</artifactId>
59 <version>1.3</version>
60 <scope>test</scope>
61 </dependency>
62
63 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070064 <groupId>org.slf4j</groupId>
65 <artifactId>slf4j-api</artifactId>
66 <version>1.7.6</version>
67 <scope>provided</scope>
68 </dependency>
69
70 <dependency>
71 <groupId>org.slf4j</groupId>
pankajb57fae22014-10-06 18:28:21 -070072 <artifactId>slf4j-core</artifactId>
73 <version>1.7.6</version>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -070079 <artifactId>slf4j-jdk14</artifactId>
80 <version>1.7.6</version>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>com.google.guava</groupId>
86 <artifactId>guava</artifactId>
tomeadbb462014-09-07 16:10:19 -070087 <version>18.0</version>
tom0eb04ca2014-08-25 14:34:51 -070088 </dependency>
89
alshabibdf652ad2014-09-09 11:53:19 -070090 <dependency>
91 <groupId>io.netty</groupId>
Madan Jampania185d862014-09-30 11:32:31 -070092 <artifactId>netty-all</artifactId>
93 <version>4.0.23.Final</version>
94 </dependency>
95
96 <dependency>
97 <groupId>io.netty</groupId>
alshabibdf652ad2014-09-09 11:53:19 -070098 <artifactId>netty</artifactId>
99 <version>3.9.0.Final</version>
100 </dependency>
101
tomde8d9682014-08-27 01:11:43 -0700102 <dependency>
103 <groupId>com.google.guava</groupId>
104 <artifactId>guava-testlib</artifactId>
tomeadbb462014-09-07 16:10:19 -0700105 <version>18.0</version>
tomde8d9682014-08-27 01:11:43 -0700106 <scope>test</scope>
107 </dependency>
108
tom6d2a43e2014-09-08 01:50:20 -0700109 <dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700110 <groupId>com.googlecode.concurrent-trees</groupId>
111 <artifactId>concurrent-trees</artifactId>
112 <version>2.4.0</version>
113 </dependency>
114
115 <dependency>
116 <groupId>commons-lang</groupId>
tom6d2a43e2014-09-08 01:50:20 -0700117 <artifactId>commons-lang</artifactId>
118 <version>2.6</version>
119 </dependency>
tomde8d9682014-08-27 01:11:43 -0700120
tom66a7eb22014-09-22 11:58:56 -0700121 <dependency>
122 <groupId>org.apache.commons</groupId>
123 <artifactId>commons-lang3</artifactId>
124 <version>3.3.2</version>
125 </dependency>
126
Brian O'Connorf3d06162014-10-02 15:54:12 -0700127 <dependency>
128 <groupId>org.codehaus.jackson</groupId>
129 <artifactId>jackson-core-asl</artifactId>
130 <version>1.9.13</version>
131 </dependency>
132 <dependency>
133 <groupId>org.codehaus.jackson</groupId>
134 <artifactId>jackson-mapper-asl</artifactId>
135 <version>1.9.13</version>
136 </dependency>
Jonathan Hart74f9c3b2014-09-29 20:03:50 -0700137
Jonathan Hartb4758a92014-09-24 10:46:45 -0700138 <dependency>
139 <groupId>org.easymock</groupId>
140 <artifactId>easymock</artifactId>
141 <version>3.2</version>
142 <scope>test</scope>
143 </dependency>
tom66a7eb22014-09-22 11:58:56 -0700144
tom0eb04ca2014-08-25 14:34:51 -0700145 <!-- Web related -->
146 <dependency>
147 <groupId>com.sun.jersey</groupId>
148 <artifactId>jersey-servlet</artifactId>
149 <version>1.18.1</version>
150 <scope>provided</scope>
151 </dependency>
152 <dependency>
153 <groupId>com.fasterxml.jackson.core</groupId>
154 <artifactId>jackson-databind</artifactId>
155 <version>2.4.2</version>
156 <scope>provided</scope>
157 </dependency>
158 <dependency>
159 <groupId>com.fasterxml.jackson.core</groupId>
160 <artifactId>jackson-annotations</artifactId>
161 <version>2.4.2</version>
162 <scope>provided</scope>
163 </dependency>
164
165 <!-- OSGi related -->
166 <dependency>
167 <groupId>org.osgi</groupId>
168 <artifactId>org.osgi.core</artifactId>
169 <version>4.3.1</version>
170 <scope>provided</scope>
171 </dependency>
172 <dependency>
tomc16656f2014-10-15 18:30:31 -0700173 <groupId>org.osgi</groupId>
174 <artifactId>org.osgi.compendium</artifactId>
175 <version>4.3.1</version>
176 <scope>provided</scope>
177 </dependency>
178 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700179 <groupId>org.apache.felix</groupId>
180 <artifactId>org.apache.felix.scr.annotations</artifactId>
181 <version>1.9.8</version>
182 <scope>provided</scope>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.karaf.shell</groupId>
186 <artifactId>org.apache.karaf.shell.console</artifactId>
187 <version>3.0.1</version>
188 <scope>provided</scope>
189 </dependency>
190
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700191 <dependency>
tom14dc4d02014-09-26 12:43:14 -0700192 <groupId>org.livetribe.slp</groupId>
193 <artifactId>livetribe-slp</artifactId>
194 <version>2.2.1</version>
195 </dependency>
196
197 <dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700198 <groupId>com.hazelcast</groupId>
199 <artifactId>hazelcast</artifactId>
200 <version>3.3</version>
201 </dependency>
202 <dependency>
tomdc66b382014-09-22 17:05:47 -0700203 <groupId>com.eclipsesource.minimal-json</groupId>
204 <artifactId>minimal-json</artifactId>
205 <version>0.9.1</version>
206 </dependency>
207 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -0700208 <groupId>com.esotericsoftware</groupId>
209 <artifactId>kryo</artifactId>
210 <version>3.0.0</version>
211 </dependency>
212 <dependency>
213 <groupId>com.esotericsoftware</groupId>
214 <artifactId>reflectasm</artifactId>
215 <version>1.10.0</version>
216 <type>bundle</type>
217 </dependency>
218 <dependency>
219 <groupId>org.ow2.asm</groupId>
220 <artifactId>asm</artifactId>
221 <version>4.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700222 </dependency>
223 <dependency>
tom66a7eb22014-09-22 11:58:56 -0700224 <groupId>com.esotericsoftware</groupId>
225 <artifactId>minlog</artifactId>
226 <version>1.3.0</version>
227 </dependency>
228 <dependency>
229 <groupId>org.objenesis</groupId>
230 <artifactId>objenesis</artifactId>
231 <version>2.1</version>
232 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700233
tom0eb04ca2014-08-25 14:34:51 -0700234 <!-- ONOS related -->
235 <dependency>
236 <groupId>org.onlab.onos</groupId>
tom5f38b3a2014-08-27 23:50:54 -0700237 <artifactId>onlab-misc</artifactId>
238 <version>${project.version}</version>
239 </dependency>
tom931af4e2014-09-13 12:00:57 -0700240 <dependency>
241 <groupId>org.onlab.onos</groupId>
tomf110fff2014-09-26 00:38:18 -0700242 <artifactId>onlab-nio</artifactId>
243 <version>${project.version}</version>
244 </dependency>
245 <dependency>
246 <groupId>org.onlab.onos</groupId>
tom0872a172014-09-23 11:24:26 -0700247 <artifactId>onlab-osgi</artifactId>
248 <version>${project.version}</version>
249 </dependency>
250 <dependency>
251 <groupId>org.onlab.onos</groupId>
tom931af4e2014-09-13 12:00:57 -0700252 <artifactId>onlab-junit</artifactId>
253 <version>1.0.0-SNAPSHOT</version>
254 <scope>test</scope>
255 </dependency>
tom5f38b3a2014-08-27 23:50:54 -0700256
257 <dependency>
258 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700259 <artifactId>onos-api</artifactId>
260 <version>${project.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>org.onlab.onos</groupId>
tom61359e92014-09-16 15:50:27 -0700264 <artifactId>onos-api</artifactId>
265 <version>${project.version}</version>
266 <classifier>tests</classifier>
267 <scope>test</scope>
268 </dependency>
269
270 <dependency>
271 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700272 <artifactId>onos-of-api</artifactId>
273 <version>${project.version}</version>
274 </dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700275
276 <dependency>
277 <groupId>org.onlab.onos</groupId>
278 <artifactId>onlab-thirdparty</artifactId>
279 <version>${project.version}</version>
280 </dependency>
281
tom61359e92014-09-16 15:50:27 -0700282 <dependency>
283 <groupId>org.onlab.onos</groupId>
284 <artifactId>onos-of-api</artifactId>
285 <version>${project.version}</version>
286 <classifier>tests</classifier>
287 <scope>test</scope>
288 </dependency>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700289 <dependency>
290 <groupId>commons-pool</groupId>
291 <artifactId>commons-pool</artifactId>
292 <version>1.6</version>
293 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700294 </dependencies>
295 </dependencyManagement>
296
297 <dependencies>
298 <dependency>
299 <groupId>junit</groupId>
300 <artifactId>junit</artifactId>
301 </dependency>
302 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700303 <groupId>org.hamcrest</groupId>
304 <artifactId>hamcrest-core</artifactId>
305 </dependency>
306 <dependency>
307 <groupId>org.hamcrest</groupId>
308 <artifactId>hamcrest-library</artifactId>
309 </dependency>
310 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700311 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700312 <artifactId>slf4j-api</artifactId>
313 </dependency>
314 <dependency>
315 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700316 <artifactId>slf4j-jdk14</artifactId>
317 </dependency>
318 </dependencies>
tom09419512014-08-15 11:28:43 -0700319
320 <build>
321 <pluginManagement>
322 <plugins>
323 <plugin>
324 <groupId>org.apache.maven.plugins</groupId>
325 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700326 <!-- TODO: update once following issue is fixed. -->
327 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
328 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700329 <configuration>
330 <source>1.7</source>
331 <target>1.7</target>
332 </configuration>
333 </plugin>
334
335 <plugin>
336 <groupId>org.apache.maven.plugins</groupId>
337 <artifactId>maven-surefire-plugin</artifactId>
338 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700339 <configuration>
340 <redirectTestOutputToFile>true</redirectTestOutputToFile>
341 <printSummary>true</printSummary>
342 </configuration>
tom09419512014-08-15 11:28:43 -0700343 </plugin>
344
345 <plugin>
346 <groupId>org.apache.maven.plugins</groupId>
347 <artifactId>maven-jar-plugin</artifactId>
348 <version>2.3.1</version>
349 <executions>
350 <execution>
351 <phase>package</phase>
352 <goals>
353 <goal>test-jar</goal>
354 </goals>
355 </execution>
356 </executions>
357 </plugin>
358
359 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700360 <groupId>org.apache.maven.plugins</groupId>
361 <artifactId>maven-resources-plugin</artifactId>
362 <version>2.6</version>
363 </plugin>
364
365 <plugin>
tom09419512014-08-15 11:28:43 -0700366 <groupId>org.apache.felix</groupId>
367 <artifactId>maven-bundle-plugin</artifactId>
368 <version>2.3.7</version>
369 <extensions>true</extensions>
370 </plugin>
371
372 <plugin>
373 <groupId>org.apache.felix</groupId>
374 <artifactId>maven-scr-plugin</artifactId>
375 <version>1.15.0</version>
376 <executions>
377 <execution>
378 <id>generate-scr-srcdescriptor</id>
379 <goals>
380 <goal>scr</goal>
381 </goals>
382 </execution>
383 </executions>
384 <configuration>
385 <supportedProjectTypes>
386 <supportedProjectType>bundle</supportedProjectType>
387 <supportedProjectType>war</supportedProjectType>
388 </supportedProjectTypes>
389 </configuration>
390 </plugin>
391
tom09419512014-08-15 11:28:43 -0700392 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700393 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
394 <plugin>
395 <groupId>org.eclipse.m2e</groupId>
396 <artifactId>lifecycle-mapping</artifactId>
397 <version>1.0.0</version>
398 <configuration>
399 <lifecycleMappingMetadata>
400 <pluginExecutions>
401 <pluginExecution>
402 <pluginExecutionFilter>
403 <groupId>org.jacoco</groupId>
404 <artifactId>
405 jacoco-maven-plugin
406 </artifactId>
407 <versionRange>
408 [0.7.1.201405082137,)
409 </versionRange>
410 <goals>
411 <goal>prepare-agent</goal>
412 </goals>
413 </pluginExecutionFilter>
414 <action>
415 <ignore></ignore>
416 </action>
417 </pluginExecution>
418 </pluginExecutions>
419 </lifecycleMappingMetadata>
420 </configuration>
421 </plugin>
tom09419512014-08-15 11:28:43 -0700422 </plugins>
tom09419512014-08-15 11:28:43 -0700423 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700424
425 <plugins>
426 <plugin>
427 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700428 <artifactId>maven-jar-plugin</artifactId>
429 </plugin>
430
431 <plugin>
432 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700433 <artifactId>maven-checkstyle-plugin</artifactId>
434 <version>2.12.1</version>
435 <dependencies>
436 <dependency>
437 <groupId>org.onlab.tools</groupId>
438 <artifactId>onos-build-conf</artifactId>
439 <version>1.0</version>
440 </dependency>
441 </dependencies>
442 <configuration>
443 <configLocation>onos/checkstyle.xml</configLocation>
444 <suppressionsLocation>onos/suppressions.xml
445 </suppressionsLocation>
446 <failsOnError>false</failsOnError>
447 <logViolationsToConsole>true</logViolationsToConsole>
448 <includeTestSourceDirectory>true
449 </includeTestSourceDirectory>
450 </configuration>
451 <executions>
452 <execution>
453 <id>validate-checkstyle</id>
454 <phase>verify</phase>
455 <goals>
456 <goal>check</goal>
457 </goals>
458 </execution>
459 </executions>
460 </plugin>
461
462 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700463 <groupId>org.apache.maven.plugins</groupId>
464 <artifactId>maven-pmd-plugin</artifactId>
465 <version>3.2</version>
466 <configuration>
467 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700468 </excludes>
469 <rulesets>
470 <ruleset>onos/pmd.xml</ruleset>
471 </rulesets>
472 </configuration>
473 <executions>
474 <execution>
475 <id>validate-pmd</id>
476 <phase>verify</phase>
477 <goals>
478 <!-- Uncomment this goal to make the build fail on pmd errors -->
479 <!--<goal>check</goal>-->
480 </goals>
481 </execution>
482 </executions>
483 </plugin>
484
485 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700486 <groupId>org.jacoco</groupId>
487 <artifactId>jacoco-maven-plugin</artifactId>
488 <version>0.7.1.201405082137</version>
489 <executions>
490 <execution>
491 <id>default-prepare-agent</id>
492 <goals>
493 <goal>prepare-agent</goal>
494 </goals>
495 </execution>
496 <execution>
497 <id>default-report</id>
498 <phase>prepare-package</phase>
499 <goals>
500 <goal>report</goal>
501 </goals>
502 </execution>
503 </executions>
504 </plugin>
505
506 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700507 <groupId>org.apache.maven.plugins</groupId>
508 <artifactId>maven-javadoc-plugin</artifactId>
509 <version>2.9.1</version>
510 <configuration>
tom578ebdc2014-09-11 11:12:51 -0700511 <show>package</show>
tom0eb04ca2014-08-25 14:34:51 -0700512 <docfilessubdirs>true</docfilessubdirs>
513 <doctitle>ONOS Java API</doctitle>
514 <groups>
515 <group>
516 <title>Network Model &amp; Services</title>
517 <packages>
tom5d4e73c2014-09-24 18:38:24 -0700518 org.onlab.onos:org.onlab.onos.*
tom0eb04ca2014-08-25 14:34:51 -0700519 </packages>
520 </group>
521 <group>
522 <title>Core Subsystems</title>
523 <packages>
Yuta HIGUCHI80912e62014-10-12 00:15:47 -0700524 org.onlab.onos.impl:org.onlab.onos.cluster.impl:org.onlab.onos.net.device.impl:org.onlab.onos.net.link.impl:org.onlab.onos.net.host.impl:org.onlab.onos.net.topology.impl:org.onlab.onos.net.packet.impl:org.onlab.onos.net.flow.impl:org.onlab.onos.store.trivial.*:org.onlab.onos.net.*.impl:org.onlab.onos.event.impl:org.onlab.onos.store.*:org.onlab.onos.net.intent.impl:org.onlab.onos.net.proxyarp.impl:org.onlab.onos.mastership.impl
tom0eb04ca2014-08-25 14:34:51 -0700525 </packages>
526 </group>
527 <group>
528 <title>OpenFlow Providers &amp; Controller
529 </title>
530 <packages>
tom9c94c5b2014-09-17 13:14:42 -0700531 org.onlab.onos.provider.of.*:org.onlab.onos.openflow.*
tom0eb04ca2014-08-25 14:34:51 -0700532 </packages>
533 </group>
534 <group>
535 <title>Utilities</title>
536 <packages>
tom984d7822014-08-29 12:02:59 -0700537 org.onlab.*
tom0eb04ca2014-08-25 14:34:51 -0700538 </packages>
539 </group>
540 <group>
541 <title>GUI, REST &amp; Command-Line</title>
542 <packages>
543 org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.*
544 </packages>
545 </group>
tom8bb16062014-09-12 14:47:46 -0700546 <group>
547 <title>Sample Applications</title>
548 <packages>
tom093340b2014-10-10 00:15:36 -0700549 org.onlab.onos.tvue:org.onlab.onos.fwd:org.onlab.onos.ifwd:org.onlab.onos.mobility:org.onlab.onos.proxyarp:org.onlab.onos.foo
tom8bb16062014-09-12 14:47:46 -0700550 </packages>
551 </group>
tom0eb04ca2014-08-25 14:34:51 -0700552 </groups>
553 </configuration>
554 </plugin>
555
556 </plugins>
tom09419512014-08-15 11:28:43 -0700557 </build>
alshabib522d9872014-08-15 10:35:16 -0700558
tom0eb04ca2014-08-25 14:34:51 -0700559 <reporting>
560 <plugins>
561 <plugin>
562 <groupId>org.apache.maven.plugins</groupId>
563 <artifactId>maven-checkstyle-plugin</artifactId>
564 <version>2.12.1</version>
565 <configuration>
566 <configLocation>onos/checkstyle.xml</configLocation>
567 </configuration>
568 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700569
570 <plugin>
571 <groupId>org.apache.maven.plugins</groupId>
572 <artifactId>maven-pmd-plugin</artifactId>
573 <version>3.2</version>
574 <configuration>
575 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700576 </excludes>
577 <rulesets>
578 <ruleset>onos/pmd.xml</ruleset>
579 </rulesets>
580 </configuration>
581 </plugin>
582
tom0eb04ca2014-08-25 14:34:51 -0700583 </plugins>
584
585 </reporting>
586
alshabib522d9872014-08-15 10:35:16 -0700587</project>