blob: 716367770095151a9ece6fc6f8457ba516f41500 [file] [log] [blame]
Brian O'Connor354cab92015-08-27 11:55:27 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <prerequisites>
23 <maven>3.0.1</maven>
24 </prerequisites>
25
26 <parent>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-base</artifactId>
29 <version>1</version>
30 <relativePath>tools/build/pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos</artifactId>
34 <packaging>pom</packaging>
35 <version>1.3.0-SNAPSHOT</version>
36
37 <name>${project.artifactId}</name>
38 <description>Open Network Operating System root project</description>
39
40 <modules>
41 <module>utils</module>
42 <module>core</module>
43 <module>web</module>
44 <module>cli</module>
45
46 <module>openflow</module>
47 <module>ovsdb</module>
48 <module>pcep</module>
49
50 <module>providers</module>
51 <module>drivers</module>
52
53 <module>apps</module>
54 <module>incubator</module>
55 <module>features</module>
56
57 <module>tools/package/archetypes</module>
58 <module>tools/package/branding</module>
59 </modules>
60
61 <url>http://onosproject.org/</url>
62
63 <scm>
64 <connection>scm:git:https://gerrit.onosproject.org/onos</connection>
65 <developerConnection>scm:git:https://gerrit.onosproject.org/onos
66 </developerConnection>
67 <url>http://gerrit.onosproject.org/</url>
68 </scm>
69
70 <licenses>
71 <license>
72 <name>Apache License, Version 2.0</name>
73 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
74 </license>
75 </licenses>
76
77 <properties>
78 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79 <netty4.version>4.0.23.Final</netty4.version>
80 <copycat.version>0.5.0.onos12-SNAPSHOT</copycat.version>
Brian O'Connor0ecdb322015-09-03 15:37:50 -070081 <openflowj.version>0.9.0.onos</openflowj.version>
Brian O'Connor354cab92015-08-27 11:55:27 -070082 <karaf.version>3.0.3</karaf.version>
83 <jersey.version>1.19</jersey.version>
84 </properties>
85
86 <distributionManagement>
87 <snapshotRepository>
88 <id>ossrh</id>
89 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
90 </snapshotRepository>
91 </distributionManagement>
92
93 <!--- Needed for copycat. Remove before official release -->
94 <repositories>
95 <repository>
96 <id>snapshots</id>
97 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
98 </repository>
99 </repositories>
100
Brian O'Connor354cab92015-08-27 11:55:27 -0700101 <dependencyManagement>
102 <dependencies>
103 <dependency>
104 <groupId>junit</groupId>
105 <artifactId>junit</artifactId>
106 <version>4.11</version>
107 <scope>test</scope>
108 </dependency>
109
110 <dependency>
111 <groupId>org.hamcrest</groupId>
112 <artifactId>hamcrest-core</artifactId>
113 <version>1.3</version>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.hamcrest</groupId>
118 <artifactId>hamcrest-library</artifactId>
119 <version>1.3</version>
120 <scope>test</scope>
121 </dependency>
122
123 <dependency>
124 <groupId>org.slf4j</groupId>
125 <artifactId>slf4j-api</artifactId>
126 <version>1.7.6</version>
127 <scope>provided</scope>
128 </dependency>
129
130 <dependency>
131 <groupId>org.slf4j</groupId>
132 <artifactId>slf4j-core</artifactId>
133 <version>1.7.6</version>
134 <scope>test</scope>
135 </dependency>
136
137 <dependency>
138 <groupId>org.slf4j</groupId>
139 <artifactId>slf4j-jdk14</artifactId>
140 <version>1.7.6</version>
141 <scope>test</scope>
142 </dependency>
143
144 <dependency>
145 <groupId>com.google.guava</groupId>
146 <artifactId>guava</artifactId>
147 <version>18.0</version>
148 </dependency>
149
150 <dependency>
151 <groupId>io.netty</groupId>
152 <artifactId>netty</artifactId>
153 <version>3.9.0.Final</version>
154 </dependency>
155
156 <dependency>
157 <groupId>com.google.guava</groupId>
158 <artifactId>guava-testlib</artifactId>
159 <version>18.0</version>
160 <scope>test</scope>
161 </dependency>
162
163 <dependency>
164 <groupId>com.googlecode.concurrent-trees</groupId>
165 <artifactId>concurrent-trees</artifactId>
166 <version>2.4.0</version>
167 </dependency>
168
169 <dependency>
170 <groupId>commons-lang</groupId>
171 <artifactId>commons-lang</artifactId>
172 <version>2.6</version>
173 </dependency>
174
175 <dependency>
176 <groupId>org.apache.commons</groupId>
177 <artifactId>commons-lang3</artifactId>
178 <version>3.3.2</version>
179 </dependency>
180
181 <dependency>
182 <groupId>commons-configuration</groupId>
183 <artifactId>commons-configuration</artifactId>
184 <version>1.10</version>
185 </dependency>
186
187 <dependency>
188 <groupId>commons-collections</groupId>
189 <artifactId>commons-collections</artifactId>
190 <version>3.2.1</version>
191 </dependency>
192
193 <dependency>
194 <groupId>org.codehaus.jackson</groupId>
195 <artifactId>jackson-core-asl</artifactId>
196 <version>1.9.13</version>
197 </dependency>
198 <dependency>
199 <groupId>org.codehaus.jackson</groupId>
200 <artifactId>jackson-mapper-asl</artifactId>
201 <version>1.9.13</version>
202 </dependency>
203
204 <dependency>
205 <groupId>org.easymock</groupId>
206 <artifactId>easymock</artifactId>
207 <version>3.2</version>
208 <scope>test</scope>
209 </dependency>
210
211 <!-- Web related -->
212 <dependency>
213 <groupId>com.sun.jersey</groupId>
214 <artifactId>jersey-servlet</artifactId>
215 <version>${jersey.version}</version>
216 <scope>provided</scope>
217 </dependency>
218 <dependency>
219 <groupId>com.sun.jersey.contribs</groupId>
220 <artifactId>jersey-multipart</artifactId>
221 <version>${jersey.version}</version>
222 <scope>provided</scope>
223 </dependency>
224 <dependency>
225 <groupId>com.sun.jersey.jersey-test-framework</groupId>
226 <artifactId>jersey-test-framework-core</artifactId>
227 <version>${jersey.version}</version>
228 <scope>test</scope>
229 </dependency>
230 <dependency>
231 <groupId>com.sun.jersey.jersey-test-framework</groupId>
232 <artifactId>jersey-test-framework-grizzly2</artifactId>
233 <version>${jersey.version}</version>
234 <scope>test</scope>
235 </dependency>
236 <dependency>
237 <groupId>com.fasterxml.jackson.core</groupId>
238 <artifactId>jackson-databind</artifactId>
239 <version>2.4.2</version>
240 <scope>provided</scope>
241 </dependency>
242 <dependency>
243 <groupId>com.fasterxml.jackson.core</groupId>
244 <artifactId>jackson-annotations</artifactId>
245 <version>2.4.2</version>
246 <scope>provided</scope>
247 </dependency>
248
249 <!-- OSGi related -->
250 <dependency>
251 <groupId>org.osgi</groupId>
252 <artifactId>org.osgi.core</artifactId>
253 <version>4.3.1</version>
254 <scope>provided</scope>
255 </dependency>
256 <dependency>
257 <groupId>org.osgi</groupId>
258 <artifactId>org.osgi.compendium</artifactId>
259 <version>4.3.1</version>
260 <scope>provided</scope>
261 </dependency>
262 <dependency>
263 <groupId>org.apache.felix</groupId>
264 <artifactId>org.apache.felix.scr.annotations</artifactId>
265 <version>1.9.8</version>
266 <scope>provided</scope>
267 </dependency>
268
269 <dependency>
270 <groupId>org.apache.karaf.features</groupId>
271 <artifactId>org.apache.karaf.features.core</artifactId>
272 <version>${karaf.version}</version>
273 <scope>provided</scope>
274 </dependency>
275 <dependency>
276 <groupId>org.apache.karaf.system</groupId>
277 <artifactId>org.apache.karaf.system.core</artifactId>
278 <version>${karaf.version}</version>
279 <scope>provided</scope>
280 </dependency>
281 <dependency>
282 <groupId>org.apache.karaf.shell</groupId>
283 <artifactId>org.apache.karaf.shell.console</artifactId>
284 <version>${karaf.version}</version>
285 <scope>provided</scope>
286 </dependency>
287
288 <dependency>
289 <groupId>org.livetribe.slp</groupId>
290 <artifactId>livetribe-slp</artifactId>
291 <version>2.2.1</version>
292 </dependency>
293
294 <dependency>
295 <groupId>com.eclipsesource.minimal-json</groupId>
296 <artifactId>minimal-json</artifactId>
297 <version>0.9.1</version>
298 </dependency>
299 <dependency>
300 <groupId>com.esotericsoftware</groupId>
301 <artifactId>kryo</artifactId>
302 <version>3.0.0</version>
303 </dependency>
304 <dependency>
305 <groupId>com.esotericsoftware</groupId>
306 <artifactId>reflectasm</artifactId>
307 <version>1.10.0</version>
308 <type>bundle</type>
309 </dependency>
310 <dependency>
311 <groupId>org.ow2.asm</groupId>
312 <artifactId>asm</artifactId>
313 <version>4.2</version>
314 </dependency>
315 <dependency>
316 <groupId>com.esotericsoftware</groupId>
317 <artifactId>minlog</artifactId>
318 <version>1.3.0</version>
319 </dependency>
320 <dependency>
321 <groupId>org.objenesis</groupId>
322 <artifactId>objenesis</artifactId>
323 <version>2.1</version>
324 </dependency>
325
326 <!-- ONOS related -->
327 <dependency>
328 <groupId>org.onosproject</groupId>
329 <artifactId>onlab-misc</artifactId>
330 <version>${project.version}</version>
331 </dependency>
332 <dependency>
333 <groupId>org.onosproject</groupId>
334 <artifactId>onlab-nio</artifactId>
335 <version>${project.version}</version>
336 </dependency>
337 <dependency>
338 <groupId>org.onosproject</groupId>
339 <artifactId>onlab-osgi</artifactId>
340 <version>${project.version}</version>
341 </dependency>
342 <dependency>
343 <groupId>org.onosproject</groupId>
344 <artifactId>onlab-osgi</artifactId>
345 <version>${project.version}</version>
346 <classifier>tests</classifier>
347 <scope>test</scope>
348 </dependency>
349 <dependency>
350 <groupId>org.onosproject</groupId>
351 <artifactId>onlab-junit</artifactId>
352 <version>${project.version}</version>
353 <scope>test</scope>
354 </dependency>
355
356 <dependency>
357 <groupId>org.onosproject</groupId>
358 <artifactId>onos-api</artifactId>
359 <version>${project.version}</version>
360 </dependency>
361 <dependency>
362 <groupId>org.onosproject</groupId>
363 <artifactId>onos-api</artifactId>
364 <version>${project.version}</version>
365 <classifier>tests</classifier>
366 <scope>test</scope>
367 </dependency>
368
369 <dependency>
370 <groupId>org.onosproject</groupId>
371 <artifactId>onos-incubator-api</artifactId>
372 <version>${project.version}</version>
373 </dependency>
374
375 <dependency>
376 <groupId>org.onosproject</groupId>
377 <artifactId>onos-core-common</artifactId>
378 <version>${project.version}</version>
379 </dependency>
380 <dependency>
381 <groupId>org.onosproject</groupId>
382 <artifactId>onos-core-common</artifactId>
383 <version>${project.version}</version>
384 <classifier>tests</classifier>
385 <scope>test</scope>
386 </dependency>
387
388 <dependency>
389 <groupId>org.onosproject</groupId>
390 <artifactId>onos-of-api</artifactId>
391 <version>${project.version}</version>
392 </dependency>
393 <dependency>
394 <groupId>org.onosproject</groupId>
395 <artifactId>onos-ovsdb-rfc</artifactId>
396 <version>${project.version}</version>
397 </dependency>
398 <dependency>
399 <groupId>org.onosproject</groupId>
400 <artifactId>onos-ovsdb-api</artifactId>
401 <version>${project.version}</version>
402 </dependency>
403 <dependency>
404 <groupId>org.onosproject</groupId>
Phanendra Manda5e895872015-08-26 20:11:58 +0530405 <artifactId>onos-app-pcep-api</artifactId>
406 <version>${project.version}</version>
407 </dependency>
408 <dependency>
409 <groupId>org.onosproject</groupId>
Brian O'Connor354cab92015-08-27 11:55:27 -0700410 <artifactId>onos-pcepio</artifactId>
411 <version>${project.version}</version>
412 </dependency>
413
414 <dependency>
415 <groupId>org.onosproject</groupId>
416 <artifactId>onos-pcep-controller-api</artifactId>
417 <version>${project.version}</version>
418 </dependency>
Brian O'Connor354cab92015-08-27 11:55:27 -0700419 <dependency>
420 <groupId>org.onosproject</groupId>
421 <artifactId>onlab-thirdparty</artifactId>
422 <version>${project.version}</version>
423 </dependency>
424
425 <dependency>
426 <groupId>org.onosproject</groupId>
427 <artifactId>onos-of-api</artifactId>
428 <version>${project.version}</version>
429 <classifier>tests</classifier>
430 <scope>test</scope>
431 </dependency>
432 <dependency>
Phanendra Manda5e895872015-08-26 20:11:58 +0530433 <groupId>org.onosproject</groupId>
434 <artifactId>onos-pcep-controller-api</artifactId>
435 <version>${project.version}</version>
436 <classifier>tests</classifier>
437 <scope>test</scope>
438 </dependency>
439 <dependency>
Brian O'Connor354cab92015-08-27 11:55:27 -0700440 <groupId>commons-pool</groupId>
441 <artifactId>commons-pool</artifactId>
442 <version>1.6</version>
443 </dependency>
444 <dependency>
445 <groupId>io.netty</groupId>
446 <artifactId>netty-common</artifactId>
447 <version>${netty4.version}</version>
448 </dependency>
449 <dependency>
450 <groupId>io.netty</groupId>
451 <artifactId>netty-buffer</artifactId>
452 <version>${netty4.version}</version>
453 </dependency>
454 <dependency>
455 <groupId>io.netty</groupId>
456 <artifactId>netty-transport</artifactId>
457 <version>${netty4.version}</version>
458 </dependency>
459 <dependency>
460 <groupId>io.netty</groupId>
461 <artifactId>netty-handler</artifactId>
462 <version>${netty4.version}</version>
463 </dependency>
464 <dependency>
465 <groupId>io.netty</groupId>
466 <artifactId>netty-codec</artifactId>
467 <version>${netty4.version}</version>
468 </dependency>
469 <dependency>
470 <groupId>io.netty</groupId>
471 <artifactId>netty-transport-native-epoll</artifactId>
472 <version>${netty4.version}</version>
473 <classifier>${os.detected.classifier}</classifier>
474 </dependency>
475 <dependency>
476 <groupId>joda-time</groupId>
477 <artifactId>joda-time</artifactId>
478 <version>2.5</version>
479 </dependency>
480 </dependencies>
481 </dependencyManagement>
482
483 <dependencies>
484 <dependency>
485 <groupId>junit</groupId>
486 <artifactId>junit</artifactId>
487 </dependency>
488 <dependency>
489 <groupId>org.hamcrest</groupId>
490 <artifactId>hamcrest-core</artifactId>
491 </dependency>
492 <dependency>
493 <groupId>org.hamcrest</groupId>
494 <artifactId>hamcrest-library</artifactId>
495 </dependency>
496 <dependency>
497 <groupId>org.slf4j</groupId>
498 <artifactId>slf4j-api</artifactId>
499 </dependency>
500 <dependency>
501 <groupId>org.slf4j</groupId>
502 <artifactId>slf4j-jdk14</artifactId>
503 </dependency>
504 </dependencies>
505
506 <build>
507 <pluginManagement>
508 <plugins>
509 <plugin>
510 <groupId>org.apache.maven.plugins</groupId>
511 <artifactId>maven-compiler-plugin</artifactId>
512 <!-- TODO: update once following issue is fixed. -->
513 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
514 <version>2.5.1</version>
515 <configuration>
516 <source>1.8</source>
517 <target>1.8</target>
518 </configuration>
519 </plugin>
520
521 <plugin>
522 <groupId>org.apache.maven.plugins</groupId>
523 <artifactId>maven-surefire-plugin</artifactId>
524 <version>2.18.1</version>
525 <configuration>
526 <redirectTestOutputToFile>true
527 </redirectTestOutputToFile>
528 <printSummary>true</printSummary>
529 <excludedGroups>org.onlab.junit.IntegrationTest
530 </excludedGroups>
531 <rerunFailingTestsCount>1</rerunFailingTestsCount>
532 </configuration>
533 </plugin>
534
535 <plugin>
536 <groupId>org.apache.maven.plugins</groupId>
537 <artifactId>maven-jar-plugin</artifactId>
538 <version>2.3.1</version>
539 <executions>
540 <execution>
541 <phase>package</phase>
542 <goals>
543 <goal>test-jar</goal>
544 </goals>
545 </execution>
546 </executions>
547 </plugin>
548
549 <plugin>
550 <groupId>org.apache.maven.plugins</groupId>
551 <artifactId>maven-resources-plugin</artifactId>
552 <version>2.6</version>
553 </plugin>
554
555 <plugin>
556 <groupId>org.apache.felix</groupId>
557 <artifactId>maven-bundle-plugin</artifactId>
558 <version>2.5.3</version>
559 <extensions>true</extensions>
560 <!--
561 Drop following dependency when the below bug fix is published
562 https://issues.apache.org/jira/browse/FELIX-4556
563 -->
564 <dependencies>
565 <dependency>
566 <groupId>biz.aQute.bnd</groupId>
567 <artifactId>bndlib</artifactId>
568 <version>2.4.0</version>
569 </dependency>
570 </dependencies>
571 </plugin>
572
573 <plugin>
574 <groupId>org.apache.maven.plugins</groupId>
575 <artifactId>maven-shade-plugin</artifactId>
576 <version>2.3</version>
577 </plugin>
578
579 <plugin>
580 <groupId>org.apache.felix</groupId>
581 <artifactId>maven-scr-plugin</artifactId>
582 <version>1.20.0</version>
583 <executions>
584 <execution>
585 <id>generate-scr-srcdescriptor</id>
586 <goals>
587 <goal>scr</goal>
588 </goals>
589 </execution>
590 </executions>
591 <configuration>
592 <supportedProjectTypes>
593 <supportedProjectType>bundle</supportedProjectType>
594 <supportedProjectType>war</supportedProjectType>
595 </supportedProjectTypes>
596 </configuration>
597 </plugin>
598 <plugin>
599 <groupId>org.codehaus.mojo</groupId>
600 <artifactId>findbugs-maven-plugin</artifactId>
601 <version>3.0.0</version>
602 <dependencies>
603 <dependency>
604 <groupId>org.onosproject</groupId>
605 <artifactId>onos-build-conf</artifactId>
606 <version>1.0</version>
607 </dependency>
608 </dependencies>
609 <configuration>
610 <effort>Max</effort>
611 <excludeFilterFile>onos/findbugs-suppressions.xml
612 </excludeFilterFile>
613 </configuration>
614 </plugin>
615
616 <!-- This version needs to be updated manually when changes are made to onos-maven-plugin -->
617 <plugin>
618 <groupId>org.onosproject</groupId>
619 <artifactId>onos-maven-plugin</artifactId>
620 <version>1.5</version>
621 <executions>
622 <execution>
623 <id>cfg</id>
624 <phase>generate-resources</phase>
625 <goals>
626 <goal>cfg</goal>
627 </goals>
628 </execution>
629 <execution>
630 <id>swagger</id>
631 <phase>generate-sources</phase>
632 <goals>
633 <goal>swagger</goal>
634 </goals>
635 </execution>
636 <execution>
637 <id>app</id>
638 <phase>package</phase>
639 <goals>
640 <goal>app</goal>
641 </goals>
642 </execution>
643 </executions>
644 </plugin>
645 </plugins>
646 </pluginManagement>
647
648 <plugins>
649 <plugin>
650 <groupId>org.apache.maven.plugins</groupId>
651 <artifactId>maven-jar-plugin</artifactId>
652 </plugin>
653
654 <plugin>
655 <groupId>org.apache.maven.plugins</groupId>
656 <artifactId>maven-checkstyle-plugin</artifactId>
657 <version>2.13</version>
658 <dependencies>
659 <dependency>
660 <groupId>org.onosproject</groupId>
661 <artifactId>onos-build-conf</artifactId>
662 <version>1.0</version>
663 </dependency>
664 <!-- For Java 8 lambda support-->
665 <dependency>
666 <groupId>com.puppycrawl.tools</groupId>
667 <artifactId>checkstyle</artifactId>
668 <version>5.9</version>
669 </dependency>
670 </dependencies>
671 <configuration>
672 <!-- begin: workaround for unexpected NullPointerException on Eclipse -->
673 <sourceDirectory>${project.build.sourceDirectory}
674 </sourceDirectory>
675 <testSourceDirectory>${project.build.testSourceDirectory}
676 </testSourceDirectory>
677 <!-- end: workaround for unexpected NullPointerException on Eclipse -->
678 <configLocation>onos/checkstyle.xml</configLocation>
679 <suppressionsLocation>onos/suppressions.xml
680 </suppressionsLocation>
681 <failsOnError>false</failsOnError>
682 <logViolationsToConsole>true</logViolationsToConsole>
683 <includeTestSourceDirectory>true
684 </includeTestSourceDirectory>
685 </configuration>
686 <executions>
687 <execution>
688 <id>validate-checkstyle</id>
689 <phase>verify</phase>
690 <goals>
691 <goal>check</goal>
692 </goals>
693 </execution>
694 </executions>
695 </plugin>
696
697 <plugin>
698 <groupId>org.apache.maven.plugins</groupId>
699 <artifactId>maven-pmd-plugin</artifactId>
700 <version>3.2</version>
701 <configuration>
702 <excludes>
703 </excludes>
704 <rulesets>
705 <ruleset>onos/pmd.xml</ruleset>
706 </rulesets>
707 </configuration>
708 <executions>
709 <execution>
710 <id>validate-pmd</id>
711 <phase>verify</phase>
712 <goals>
713 <!-- Uncomment this goal to make the build fail on pmd errors -->
714 <!--<goal>check</goal>-->
715 </goals>
716 </execution>
717 </executions>
718 </plugin>
719
720 <plugin>
721 <groupId>org.jacoco</groupId>
722 <artifactId>jacoco-maven-plugin</artifactId>
723 <version>0.7.2.201409121644</version>
724 <executions>
725 <execution>
726 <id>default-prepare-agent</id>
727 <goals>
728 <goal>prepare-agent</goal>
729 </goals>
730 </execution>
731 <execution>
732 <id>default-report</id>
733 <phase>prepare-package</phase>
734 <goals>
735 <goal>report</goal>
736 </goals>
737 </execution>
738 </executions>
739 </plugin>
740 </plugins>
741 </build>
742
743 <reporting>
744 <plugins>
745 <plugin>
746 <groupId>org.apache.maven.plugins</groupId>
747 <artifactId>maven-checkstyle-plugin</artifactId>
748 <version>2.12.1</version>
749 <configuration>
750 <configLocation>onos/checkstyle.xml</configLocation>
751 </configuration>
752 </plugin>
753
754 <plugin>
755 <groupId>org.apache.maven.plugins</groupId>
756 <artifactId>maven-pmd-plugin</artifactId>
757 <version>3.2</version>
758 <configuration>
759 <excludes>
760 </excludes>
761 <rulesets>
762 <ruleset>onos/pmd.xml</ruleset>
763 </rulesets>
764 </configuration>
765 </plugin>
766 </plugins>
767 </reporting>
768</project>