blob: 30f4182193c6e9c6bebd9091abebab42327725a2 [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>
81 <openflowj.version>0.4.1.onos-SNAPSHOT</openflowj.version>
82 <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
101 <!--- FIXME Needed for onos-maven-plugin. Remove before official release -->
102 <pluginRepositories>
103 <pluginRepository>
104 <id>snapshots</id>
105 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
106 </pluginRepository>
107 </pluginRepositories>
108
109 <dependencyManagement>
110 <dependencies>
111 <dependency>
112 <groupId>junit</groupId>
113 <artifactId>junit</artifactId>
114 <version>4.11</version>
115 <scope>test</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.hamcrest</groupId>
120 <artifactId>hamcrest-core</artifactId>
121 <version>1.3</version>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.hamcrest</groupId>
126 <artifactId>hamcrest-library</artifactId>
127 <version>1.3</version>
128 <scope>test</scope>
129 </dependency>
130
131 <dependency>
132 <groupId>org.slf4j</groupId>
133 <artifactId>slf4j-api</artifactId>
134 <version>1.7.6</version>
135 <scope>provided</scope>
136 </dependency>
137
138 <dependency>
139 <groupId>org.slf4j</groupId>
140 <artifactId>slf4j-core</artifactId>
141 <version>1.7.6</version>
142 <scope>test</scope>
143 </dependency>
144
145 <dependency>
146 <groupId>org.slf4j</groupId>
147 <artifactId>slf4j-jdk14</artifactId>
148 <version>1.7.6</version>
149 <scope>test</scope>
150 </dependency>
151
152 <dependency>
153 <groupId>com.google.guava</groupId>
154 <artifactId>guava</artifactId>
155 <version>18.0</version>
156 </dependency>
157
158 <dependency>
159 <groupId>io.netty</groupId>
160 <artifactId>netty</artifactId>
161 <version>3.9.0.Final</version>
162 </dependency>
163
164 <dependency>
165 <groupId>com.google.guava</groupId>
166 <artifactId>guava-testlib</artifactId>
167 <version>18.0</version>
168 <scope>test</scope>
169 </dependency>
170
171 <dependency>
172 <groupId>com.googlecode.concurrent-trees</groupId>
173 <artifactId>concurrent-trees</artifactId>
174 <version>2.4.0</version>
175 </dependency>
176
177 <dependency>
178 <groupId>commons-lang</groupId>
179 <artifactId>commons-lang</artifactId>
180 <version>2.6</version>
181 </dependency>
182
183 <dependency>
184 <groupId>org.apache.commons</groupId>
185 <artifactId>commons-lang3</artifactId>
186 <version>3.3.2</version>
187 </dependency>
188
189 <dependency>
190 <groupId>commons-configuration</groupId>
191 <artifactId>commons-configuration</artifactId>
192 <version>1.10</version>
193 </dependency>
194
195 <dependency>
196 <groupId>commons-collections</groupId>
197 <artifactId>commons-collections</artifactId>
198 <version>3.2.1</version>
199 </dependency>
200
201 <dependency>
202 <groupId>org.codehaus.jackson</groupId>
203 <artifactId>jackson-core-asl</artifactId>
204 <version>1.9.13</version>
205 </dependency>
206 <dependency>
207 <groupId>org.codehaus.jackson</groupId>
208 <artifactId>jackson-mapper-asl</artifactId>
209 <version>1.9.13</version>
210 </dependency>
211
212 <dependency>
213 <groupId>org.easymock</groupId>
214 <artifactId>easymock</artifactId>
215 <version>3.2</version>
216 <scope>test</scope>
217 </dependency>
218
219 <!-- Web related -->
220 <dependency>
221 <groupId>com.sun.jersey</groupId>
222 <artifactId>jersey-servlet</artifactId>
223 <version>${jersey.version}</version>
224 <scope>provided</scope>
225 </dependency>
226 <dependency>
227 <groupId>com.sun.jersey.contribs</groupId>
228 <artifactId>jersey-multipart</artifactId>
229 <version>${jersey.version}</version>
230 <scope>provided</scope>
231 </dependency>
232 <dependency>
233 <groupId>com.sun.jersey.jersey-test-framework</groupId>
234 <artifactId>jersey-test-framework-core</artifactId>
235 <version>${jersey.version}</version>
236 <scope>test</scope>
237 </dependency>
238 <dependency>
239 <groupId>com.sun.jersey.jersey-test-framework</groupId>
240 <artifactId>jersey-test-framework-grizzly2</artifactId>
241 <version>${jersey.version}</version>
242 <scope>test</scope>
243 </dependency>
244 <dependency>
245 <groupId>com.fasterxml.jackson.core</groupId>
246 <artifactId>jackson-databind</artifactId>
247 <version>2.4.2</version>
248 <scope>provided</scope>
249 </dependency>
250 <dependency>
251 <groupId>com.fasterxml.jackson.core</groupId>
252 <artifactId>jackson-annotations</artifactId>
253 <version>2.4.2</version>
254 <scope>provided</scope>
255 </dependency>
256
257 <!-- OSGi related -->
258 <dependency>
259 <groupId>org.osgi</groupId>
260 <artifactId>org.osgi.core</artifactId>
261 <version>4.3.1</version>
262 <scope>provided</scope>
263 </dependency>
264 <dependency>
265 <groupId>org.osgi</groupId>
266 <artifactId>org.osgi.compendium</artifactId>
267 <version>4.3.1</version>
268 <scope>provided</scope>
269 </dependency>
270 <dependency>
271 <groupId>org.apache.felix</groupId>
272 <artifactId>org.apache.felix.scr.annotations</artifactId>
273 <version>1.9.8</version>
274 <scope>provided</scope>
275 </dependency>
276
277 <dependency>
278 <groupId>org.apache.karaf.features</groupId>
279 <artifactId>org.apache.karaf.features.core</artifactId>
280 <version>${karaf.version}</version>
281 <scope>provided</scope>
282 </dependency>
283 <dependency>
284 <groupId>org.apache.karaf.system</groupId>
285 <artifactId>org.apache.karaf.system.core</artifactId>
286 <version>${karaf.version}</version>
287 <scope>provided</scope>
288 </dependency>
289 <dependency>
290 <groupId>org.apache.karaf.shell</groupId>
291 <artifactId>org.apache.karaf.shell.console</artifactId>
292 <version>${karaf.version}</version>
293 <scope>provided</scope>
294 </dependency>
295
296 <dependency>
297 <groupId>org.livetribe.slp</groupId>
298 <artifactId>livetribe-slp</artifactId>
299 <version>2.2.1</version>
300 </dependency>
301
302 <dependency>
303 <groupId>com.eclipsesource.minimal-json</groupId>
304 <artifactId>minimal-json</artifactId>
305 <version>0.9.1</version>
306 </dependency>
307 <dependency>
308 <groupId>com.esotericsoftware</groupId>
309 <artifactId>kryo</artifactId>
310 <version>3.0.0</version>
311 </dependency>
312 <dependency>
313 <groupId>com.esotericsoftware</groupId>
314 <artifactId>reflectasm</artifactId>
315 <version>1.10.0</version>
316 <type>bundle</type>
317 </dependency>
318 <dependency>
319 <groupId>org.ow2.asm</groupId>
320 <artifactId>asm</artifactId>
321 <version>4.2</version>
322 </dependency>
323 <dependency>
324 <groupId>com.esotericsoftware</groupId>
325 <artifactId>minlog</artifactId>
326 <version>1.3.0</version>
327 </dependency>
328 <dependency>
329 <groupId>org.objenesis</groupId>
330 <artifactId>objenesis</artifactId>
331 <version>2.1</version>
332 </dependency>
333
334 <!-- ONOS related -->
335 <dependency>
336 <groupId>org.onosproject</groupId>
337 <artifactId>onlab-misc</artifactId>
338 <version>${project.version}</version>
339 </dependency>
340 <dependency>
341 <groupId>org.onosproject</groupId>
342 <artifactId>onlab-nio</artifactId>
343 <version>${project.version}</version>
344 </dependency>
345 <dependency>
346 <groupId>org.onosproject</groupId>
347 <artifactId>onlab-osgi</artifactId>
348 <version>${project.version}</version>
349 </dependency>
350 <dependency>
351 <groupId>org.onosproject</groupId>
352 <artifactId>onlab-osgi</artifactId>
353 <version>${project.version}</version>
354 <classifier>tests</classifier>
355 <scope>test</scope>
356 </dependency>
357 <dependency>
358 <groupId>org.onosproject</groupId>
359 <artifactId>onlab-junit</artifactId>
360 <version>${project.version}</version>
361 <scope>test</scope>
362 </dependency>
363
364 <dependency>
365 <groupId>org.onosproject</groupId>
366 <artifactId>onos-api</artifactId>
367 <version>${project.version}</version>
368 </dependency>
369 <dependency>
370 <groupId>org.onosproject</groupId>
371 <artifactId>onos-api</artifactId>
372 <version>${project.version}</version>
373 <classifier>tests</classifier>
374 <scope>test</scope>
375 </dependency>
376
377 <dependency>
378 <groupId>org.onosproject</groupId>
379 <artifactId>onos-incubator-api</artifactId>
380 <version>${project.version}</version>
381 </dependency>
382
383 <dependency>
384 <groupId>org.onosproject</groupId>
385 <artifactId>onos-core-common</artifactId>
386 <version>${project.version}</version>
387 </dependency>
388 <dependency>
389 <groupId>org.onosproject</groupId>
390 <artifactId>onos-core-common</artifactId>
391 <version>${project.version}</version>
392 <classifier>tests</classifier>
393 <scope>test</scope>
394 </dependency>
395
396 <dependency>
397 <groupId>org.onosproject</groupId>
398 <artifactId>onos-of-api</artifactId>
399 <version>${project.version}</version>
400 </dependency>
401 <dependency>
402 <groupId>org.onosproject</groupId>
403 <artifactId>onos-ovsdb-rfc</artifactId>
404 <version>${project.version}</version>
405 </dependency>
406 <dependency>
407 <groupId>org.onosproject</groupId>
408 <artifactId>onos-ovsdb-api</artifactId>
409 <version>${project.version}</version>
410 </dependency>
411 <dependency>
412 <groupId>org.onosproject</groupId>
Phanendra Manda5e895872015-08-26 20:11:58 +0530413 <artifactId>onos-app-pcep-api</artifactId>
414 <version>${project.version}</version>
415 </dependency>
416 <dependency>
417 <groupId>org.onosproject</groupId>
Brian O'Connor354cab92015-08-27 11:55:27 -0700418 <artifactId>onos-pcepio</artifactId>
419 <version>${project.version}</version>
420 </dependency>
421
422 <dependency>
423 <groupId>org.onosproject</groupId>
424 <artifactId>onos-pcep-controller-api</artifactId>
425 <version>${project.version}</version>
426 </dependency>
Brian O'Connor354cab92015-08-27 11:55:27 -0700427 <dependency>
428 <groupId>org.onosproject</groupId>
429 <artifactId>onlab-thirdparty</artifactId>
430 <version>${project.version}</version>
431 </dependency>
432
433 <dependency>
434 <groupId>org.onosproject</groupId>
435 <artifactId>onos-of-api</artifactId>
436 <version>${project.version}</version>
437 <classifier>tests</classifier>
438 <scope>test</scope>
439 </dependency>
440 <dependency>
Phanendra Manda5e895872015-08-26 20:11:58 +0530441 <groupId>org.onosproject</groupId>
442 <artifactId>onos-pcep-controller-api</artifactId>
443 <version>${project.version}</version>
444 <classifier>tests</classifier>
445 <scope>test</scope>
446 </dependency>
447 <dependency>
Brian O'Connor354cab92015-08-27 11:55:27 -0700448 <groupId>commons-pool</groupId>
449 <artifactId>commons-pool</artifactId>
450 <version>1.6</version>
451 </dependency>
452 <dependency>
453 <groupId>io.netty</groupId>
454 <artifactId>netty-common</artifactId>
455 <version>${netty4.version}</version>
456 </dependency>
457 <dependency>
458 <groupId>io.netty</groupId>
459 <artifactId>netty-buffer</artifactId>
460 <version>${netty4.version}</version>
461 </dependency>
462 <dependency>
463 <groupId>io.netty</groupId>
464 <artifactId>netty-transport</artifactId>
465 <version>${netty4.version}</version>
466 </dependency>
467 <dependency>
468 <groupId>io.netty</groupId>
469 <artifactId>netty-handler</artifactId>
470 <version>${netty4.version}</version>
471 </dependency>
472 <dependency>
473 <groupId>io.netty</groupId>
474 <artifactId>netty-codec</artifactId>
475 <version>${netty4.version}</version>
476 </dependency>
477 <dependency>
478 <groupId>io.netty</groupId>
479 <artifactId>netty-transport-native-epoll</artifactId>
480 <version>${netty4.version}</version>
481 <classifier>${os.detected.classifier}</classifier>
482 </dependency>
483 <dependency>
484 <groupId>joda-time</groupId>
485 <artifactId>joda-time</artifactId>
486 <version>2.5</version>
487 </dependency>
488 </dependencies>
489 </dependencyManagement>
490
491 <dependencies>
492 <dependency>
493 <groupId>junit</groupId>
494 <artifactId>junit</artifactId>
495 </dependency>
496 <dependency>
497 <groupId>org.hamcrest</groupId>
498 <artifactId>hamcrest-core</artifactId>
499 </dependency>
500 <dependency>
501 <groupId>org.hamcrest</groupId>
502 <artifactId>hamcrest-library</artifactId>
503 </dependency>
504 <dependency>
505 <groupId>org.slf4j</groupId>
506 <artifactId>slf4j-api</artifactId>
507 </dependency>
508 <dependency>
509 <groupId>org.slf4j</groupId>
510 <artifactId>slf4j-jdk14</artifactId>
511 </dependency>
512 </dependencies>
513
514 <build>
515 <pluginManagement>
516 <plugins>
517 <plugin>
518 <groupId>org.apache.maven.plugins</groupId>
519 <artifactId>maven-compiler-plugin</artifactId>
520 <!-- TODO: update once following issue is fixed. -->
521 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
522 <version>2.5.1</version>
523 <configuration>
524 <source>1.8</source>
525 <target>1.8</target>
526 </configuration>
527 </plugin>
528
529 <plugin>
530 <groupId>org.apache.maven.plugins</groupId>
531 <artifactId>maven-surefire-plugin</artifactId>
532 <version>2.18.1</version>
533 <configuration>
534 <redirectTestOutputToFile>true
535 </redirectTestOutputToFile>
536 <printSummary>true</printSummary>
537 <excludedGroups>org.onlab.junit.IntegrationTest
538 </excludedGroups>
539 <rerunFailingTestsCount>1</rerunFailingTestsCount>
540 </configuration>
541 </plugin>
542
543 <plugin>
544 <groupId>org.apache.maven.plugins</groupId>
545 <artifactId>maven-jar-plugin</artifactId>
546 <version>2.3.1</version>
547 <executions>
548 <execution>
549 <phase>package</phase>
550 <goals>
551 <goal>test-jar</goal>
552 </goals>
553 </execution>
554 </executions>
555 </plugin>
556
557 <plugin>
558 <groupId>org.apache.maven.plugins</groupId>
559 <artifactId>maven-resources-plugin</artifactId>
560 <version>2.6</version>
561 </plugin>
562
563 <plugin>
564 <groupId>org.apache.felix</groupId>
565 <artifactId>maven-bundle-plugin</artifactId>
566 <version>2.5.3</version>
567 <extensions>true</extensions>
568 <!--
569 Drop following dependency when the below bug fix is published
570 https://issues.apache.org/jira/browse/FELIX-4556
571 -->
572 <dependencies>
573 <dependency>
574 <groupId>biz.aQute.bnd</groupId>
575 <artifactId>bndlib</artifactId>
576 <version>2.4.0</version>
577 </dependency>
578 </dependencies>
579 </plugin>
580
581 <plugin>
582 <groupId>org.apache.maven.plugins</groupId>
583 <artifactId>maven-shade-plugin</artifactId>
584 <version>2.3</version>
585 </plugin>
586
587 <plugin>
588 <groupId>org.apache.felix</groupId>
589 <artifactId>maven-scr-plugin</artifactId>
590 <version>1.20.0</version>
591 <executions>
592 <execution>
593 <id>generate-scr-srcdescriptor</id>
594 <goals>
595 <goal>scr</goal>
596 </goals>
597 </execution>
598 </executions>
599 <configuration>
600 <supportedProjectTypes>
601 <supportedProjectType>bundle</supportedProjectType>
602 <supportedProjectType>war</supportedProjectType>
603 </supportedProjectTypes>
604 </configuration>
605 </plugin>
606 <plugin>
607 <groupId>org.codehaus.mojo</groupId>
608 <artifactId>findbugs-maven-plugin</artifactId>
609 <version>3.0.0</version>
610 <dependencies>
611 <dependency>
612 <groupId>org.onosproject</groupId>
613 <artifactId>onos-build-conf</artifactId>
614 <version>1.0</version>
615 </dependency>
616 </dependencies>
617 <configuration>
618 <effort>Max</effort>
619 <excludeFilterFile>onos/findbugs-suppressions.xml
620 </excludeFilterFile>
621 </configuration>
622 </plugin>
623
624 <!-- This version needs to be updated manually when changes are made to onos-maven-plugin -->
625 <plugin>
626 <groupId>org.onosproject</groupId>
627 <artifactId>onos-maven-plugin</artifactId>
628 <version>1.5</version>
629 <executions>
630 <execution>
631 <id>cfg</id>
632 <phase>generate-resources</phase>
633 <goals>
634 <goal>cfg</goal>
635 </goals>
636 </execution>
637 <execution>
638 <id>swagger</id>
639 <phase>generate-sources</phase>
640 <goals>
641 <goal>swagger</goal>
642 </goals>
643 </execution>
644 <execution>
645 <id>app</id>
646 <phase>package</phase>
647 <goals>
648 <goal>app</goal>
649 </goals>
650 </execution>
651 </executions>
652 </plugin>
653 </plugins>
654 </pluginManagement>
655
656 <plugins>
657 <plugin>
658 <groupId>org.apache.maven.plugins</groupId>
659 <artifactId>maven-jar-plugin</artifactId>
660 </plugin>
661
662 <plugin>
663 <groupId>org.apache.maven.plugins</groupId>
664 <artifactId>maven-checkstyle-plugin</artifactId>
665 <version>2.13</version>
666 <dependencies>
667 <dependency>
668 <groupId>org.onosproject</groupId>
669 <artifactId>onos-build-conf</artifactId>
670 <version>1.0</version>
671 </dependency>
672 <!-- For Java 8 lambda support-->
673 <dependency>
674 <groupId>com.puppycrawl.tools</groupId>
675 <artifactId>checkstyle</artifactId>
676 <version>5.9</version>
677 </dependency>
678 </dependencies>
679 <configuration>
680 <!-- begin: workaround for unexpected NullPointerException on Eclipse -->
681 <sourceDirectory>${project.build.sourceDirectory}
682 </sourceDirectory>
683 <testSourceDirectory>${project.build.testSourceDirectory}
684 </testSourceDirectory>
685 <!-- end: workaround for unexpected NullPointerException on Eclipse -->
686 <configLocation>onos/checkstyle.xml</configLocation>
687 <suppressionsLocation>onos/suppressions.xml
688 </suppressionsLocation>
689 <failsOnError>false</failsOnError>
690 <logViolationsToConsole>true</logViolationsToConsole>
691 <includeTestSourceDirectory>true
692 </includeTestSourceDirectory>
693 </configuration>
694 <executions>
695 <execution>
696 <id>validate-checkstyle</id>
697 <phase>verify</phase>
698 <goals>
699 <goal>check</goal>
700 </goals>
701 </execution>
702 </executions>
703 </plugin>
704
705 <plugin>
706 <groupId>org.apache.maven.plugins</groupId>
707 <artifactId>maven-pmd-plugin</artifactId>
708 <version>3.2</version>
709 <configuration>
710 <excludes>
711 </excludes>
712 <rulesets>
713 <ruleset>onos/pmd.xml</ruleset>
714 </rulesets>
715 </configuration>
716 <executions>
717 <execution>
718 <id>validate-pmd</id>
719 <phase>verify</phase>
720 <goals>
721 <!-- Uncomment this goal to make the build fail on pmd errors -->
722 <!--<goal>check</goal>-->
723 </goals>
724 </execution>
725 </executions>
726 </plugin>
727
728 <plugin>
729 <groupId>org.jacoco</groupId>
730 <artifactId>jacoco-maven-plugin</artifactId>
731 <version>0.7.2.201409121644</version>
732 <executions>
733 <execution>
734 <id>default-prepare-agent</id>
735 <goals>
736 <goal>prepare-agent</goal>
737 </goals>
738 </execution>
739 <execution>
740 <id>default-report</id>
741 <phase>prepare-package</phase>
742 <goals>
743 <goal>report</goal>
744 </goals>
745 </execution>
746 </executions>
747 </plugin>
748 </plugins>
749 </build>
750
751 <reporting>
752 <plugins>
753 <plugin>
754 <groupId>org.apache.maven.plugins</groupId>
755 <artifactId>maven-checkstyle-plugin</artifactId>
756 <version>2.12.1</version>
757 <configuration>
758 <configLocation>onos/checkstyle.xml</configLocation>
759 </configuration>
760 </plugin>
761
762 <plugin>
763 <groupId>org.apache.maven.plugins</groupId>
764 <artifactId>maven-pmd-plugin</artifactId>
765 <version>3.2</version>
766 <configuration>
767 <excludes>
768 </excludes>
769 <rulesets>
770 <ruleset>onos/pmd.xml</ruleset>
771 </rulesets>
772 </configuration>
773 </plugin>
774 </plugins>
775 </reporting>
776</project>