blob: 83ed0f45723a8d006123742ee44796ecbe68db77 [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
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -07007 <prerequisites>
8 <maven>3.0.0</maven>
9 </prerequisites>
10
tom0eb04ca2014-08-25 14:34:51 -070011 <groupId>org.onlab.onos</groupId>
tom09419512014-08-15 11:28:43 -070012 <artifactId>onos</artifactId>
13 <packaging>pom</packaging>
14 <version>1.0.0-SNAPSHOT</version>
alshabib522d9872014-08-15 10:35:16 -070015
tom0eb04ca2014-08-25 14:34:51 -070016 <description>Open Networking Operating System root project</description>
tom09419512014-08-15 11:28:43 -070017
18 <modules>
tom0eb04ca2014-08-25 14:34:51 -070019 <module>tools/build/conf</module>
20 <module>utils</module>
tome2dc27a2014-09-09 12:41:21 -070021 <module>core</module>
tom0eb04ca2014-08-25 14:34:51 -070022 <module>web</module>
23 <module>cli</module>
24 <module>providers</module>
tomf8b8d672014-09-17 13:07:23 -070025 <module>openflow</module>
tom8bb16062014-09-12 14:47:46 -070026 <module>apps</module>
tom09419512014-08-15 11:28:43 -070027 <module>features</module>
tomaa49a1e2014-09-12 23:11:46 -070028 <module>tools/package/branding</module>
tom09419512014-08-15 11:28:43 -070029 </modules>
30
31 <url>http://onlab.us/</url>
32
33 <licenses>
34 <license>
tom09419512014-08-15 11:28:43 -070035 <name>Apache License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 </license>
38 </licenses>
39
Yuta HIGUCHIe2efe722014-09-19 14:37:34 -070040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -070042 <netty4.version>4.0.23.Final</netty4.version>
Yuta HIGUCHIe2efe722014-09-19 14:37:34 -070043 </properties>
44
tom0eb04ca2014-08-25 14:34:51 -070045 <dependencyManagement>
46 <dependencies>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>4.11</version>
51 <scope>test</scope>
52 </dependency>
tom09419512014-08-15 11:28:43 -070053
tom0eb04ca2014-08-25 14:34:51 -070054 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -070055 <groupId>org.hamcrest</groupId>
56 <artifactId>hamcrest-core</artifactId>
57 <version>1.3</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.hamcrest</groupId>
62 <artifactId>hamcrest-library</artifactId>
63 <version>1.3</version>
64 <scope>test</scope>
65 </dependency>
66
67 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070068 <groupId>org.slf4j</groupId>
69 <artifactId>slf4j-api</artifactId>
70 <version>1.7.6</version>
71 <scope>provided</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.slf4j</groupId>
pankajb57fae22014-10-06 18:28:21 -070076 <artifactId>slf4j-core</artifactId>
77 <version>1.7.6</version>
78 <scope>test</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -070083 <artifactId>slf4j-jdk14</artifactId>
84 <version>1.7.6</version>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>com.google.guava</groupId>
90 <artifactId>guava</artifactId>
tomeadbb462014-09-07 16:10:19 -070091 <version>18.0</version>
tom0eb04ca2014-08-25 14:34:51 -070092 </dependency>
93
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -070094 <dependency>
Madan Jampania185d862014-09-30 11:32:31 -070095 <groupId>io.netty</groupId>
alshabibdf652ad2014-09-09 11:53:19 -070096 <artifactId>netty</artifactId>
97 <version>3.9.0.Final</version>
98 </dependency>
99
tomde8d9682014-08-27 01:11:43 -0700100 <dependency>
101 <groupId>com.google.guava</groupId>
102 <artifactId>guava-testlib</artifactId>
tomeadbb462014-09-07 16:10:19 -0700103 <version>18.0</version>
tomde8d9682014-08-27 01:11:43 -0700104 <scope>test</scope>
105 </dependency>
106
tom6d2a43e2014-09-08 01:50:20 -0700107 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700108 <groupId>com.googlecode.concurrent-trees</groupId>
109 <artifactId>concurrent-trees</artifactId>
110 <version>2.4.0</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700111 </dependency>
112
113 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700114 <groupId>commons-lang</groupId>
tom6d2a43e2014-09-08 01:50:20 -0700115 <artifactId>commons-lang</artifactId>
116 <version>2.6</version>
117 </dependency>
tomde8d9682014-08-27 01:11:43 -0700118
tom66a7eb22014-09-22 11:58:56 -0700119 <dependency>
120 <groupId>org.apache.commons</groupId>
121 <artifactId>commons-lang3</artifactId>
122 <version>3.3.2</version>
123 </dependency>
124
Brian O'Connorf3d06162014-10-02 15:54:12 -0700125 <dependency>
126 <groupId>org.codehaus.jackson</groupId>
127 <artifactId>jackson-core-asl</artifactId>
128 <version>1.9.13</version>
129 </dependency>
130 <dependency>
131 <groupId>org.codehaus.jackson</groupId>
132 <artifactId>jackson-mapper-asl</artifactId>
133 <version>1.9.13</version>
134 </dependency>
Jonathan Hart74f9c3b2014-09-29 20:03:50 -0700135
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700136 <dependency>
137 <groupId>org.easymock</groupId>
138 <artifactId>easymock</artifactId>
139 <version>3.2</version>
140 <scope>test</scope>
141 </dependency>
tom66a7eb22014-09-22 11:58:56 -0700142
tom0eb04ca2014-08-25 14:34:51 -0700143 <!-- Web related -->
144 <dependency>
145 <groupId>com.sun.jersey</groupId>
146 <artifactId>jersey-servlet</artifactId>
147 <version>1.18.1</version>
148 <scope>provided</scope>
149 </dependency>
150 <dependency>
151 <groupId>com.fasterxml.jackson.core</groupId>
152 <artifactId>jackson-databind</artifactId>
153 <version>2.4.2</version>
154 <scope>provided</scope>
155 </dependency>
156 <dependency>
157 <groupId>com.fasterxml.jackson.core</groupId>
158 <artifactId>jackson-annotations</artifactId>
159 <version>2.4.2</version>
160 <scope>provided</scope>
161 </dependency>
162
163 <!-- OSGi related -->
164 <dependency>
165 <groupId>org.osgi</groupId>
166 <artifactId>org.osgi.core</artifactId>
167 <version>4.3.1</version>
168 <scope>provided</scope>
169 </dependency>
170 <dependency>
tomc16656f2014-10-15 18:30:31 -0700171 <groupId>org.osgi</groupId>
172 <artifactId>org.osgi.compendium</artifactId>
173 <version>4.3.1</version>
174 <scope>provided</scope>
175 </dependency>
176 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700177 <groupId>org.apache.felix</groupId>
178 <artifactId>org.apache.felix.scr.annotations</artifactId>
179 <version>1.9.8</version>
180 <scope>provided</scope>
181 </dependency>
182 <dependency>
183 <groupId>org.apache.karaf.shell</groupId>
184 <artifactId>org.apache.karaf.shell.console</artifactId>
185 <version>3.0.1</version>
186 <scope>provided</scope>
187 </dependency>
188
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700189 <dependency>
tom14dc4d02014-09-26 12:43:14 -0700190 <groupId>org.livetribe.slp</groupId>
191 <artifactId>livetribe-slp</artifactId>
192 <version>2.2.1</version>
193 </dependency>
194
195 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700196 <groupId>com.hazelcast</groupId>
197 <artifactId>hazelcast</artifactId>
Yuta HIGUCHI9eedb462014-10-23 12:45:14 -0700198 <version>3.3.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700199 </dependency>
200 <dependency>
tomdc66b382014-09-22 17:05:47 -0700201 <groupId>com.eclipsesource.minimal-json</groupId>
202 <artifactId>minimal-json</artifactId>
203 <version>0.9.1</version>
204 </dependency>
205 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -0700206 <groupId>com.esotericsoftware</groupId>
207 <artifactId>kryo</artifactId>
208 <version>3.0.0</version>
209 </dependency>
210 <dependency>
211 <groupId>com.esotericsoftware</groupId>
212 <artifactId>reflectasm</artifactId>
213 <version>1.10.0</version>
214 <type>bundle</type>
215 </dependency>
216 <dependency>
217 <groupId>org.ow2.asm</groupId>
218 <artifactId>asm</artifactId>
219 <version>4.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700220 </dependency>
221 <dependency>
tom66a7eb22014-09-22 11:58:56 -0700222 <groupId>com.esotericsoftware</groupId>
223 <artifactId>minlog</artifactId>
224 <version>1.3.0</version>
225 </dependency>
226 <dependency>
227 <groupId>org.objenesis</groupId>
228 <artifactId>objenesis</artifactId>
229 <version>2.1</version>
230 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700231
tom0eb04ca2014-08-25 14:34:51 -0700232 <!-- ONOS related -->
233 <dependency>
234 <groupId>org.onlab.onos</groupId>
tom5f38b3a2014-08-27 23:50:54 -0700235 <artifactId>onlab-misc</artifactId>
236 <version>${project.version}</version>
237 </dependency>
tom931af4e2014-09-13 12:00:57 -0700238 <dependency>
239 <groupId>org.onlab.onos</groupId>
tomf110fff2014-09-26 00:38:18 -0700240 <artifactId>onlab-nio</artifactId>
241 <version>${project.version}</version>
242 </dependency>
243 <dependency>
244 <groupId>org.onlab.onos</groupId>
tom0872a172014-09-23 11:24:26 -0700245 <artifactId>onlab-osgi</artifactId>
246 <version>${project.version}</version>
247 </dependency>
248 <dependency>
249 <groupId>org.onlab.onos</groupId>
tom931af4e2014-09-13 12:00:57 -0700250 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -0700251 <version>${project.version}</version>
tom931af4e2014-09-13 12:00:57 -0700252 <scope>test</scope>
253 </dependency>
tom5f38b3a2014-08-27 23:50:54 -0700254
255 <dependency>
256 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700257 <artifactId>onos-api</artifactId>
258 <version>${project.version}</version>
259 </dependency>
260 <dependency>
261 <groupId>org.onlab.onos</groupId>
tom61359e92014-09-16 15:50:27 -0700262 <artifactId>onos-api</artifactId>
263 <version>${project.version}</version>
264 <classifier>tests</classifier>
265 <scope>test</scope>
266 </dependency>
267
268 <dependency>
269 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700270 <artifactId>onos-of-api</artifactId>
271 <version>${project.version}</version>
272 </dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700273
274 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700275 <groupId>org.onlab.onos</groupId>
276 <artifactId>onlab-thirdparty</artifactId>
277 <version>${project.version}</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700278 </dependency>
279
tom61359e92014-09-16 15:50:27 -0700280 <dependency>
281 <groupId>org.onlab.onos</groupId>
282 <artifactId>onos-of-api</artifactId>
283 <version>${project.version}</version>
284 <classifier>tests</classifier>
285 <scope>test</scope>
286 </dependency>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700287 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700288 <groupId>commons-pool</groupId>
289 <artifactId>commons-pool</artifactId>
290 <version>1.6</version>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700291 </dependency>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700292 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700293 <groupId>io.netty</groupId>
294 <artifactId>netty-common</artifactId>
295 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700296 </dependency>
297 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700298 <groupId>io.netty</groupId>
299 <artifactId>netty-buffer</artifactId>
300 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700301 </dependency>
302 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700303 <groupId>io.netty</groupId>
304 <artifactId>netty-transport</artifactId>
305 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700306 </dependency>
307 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700308 <groupId>io.netty</groupId>
309 <artifactId>netty-handler</artifactId>
310 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700311 </dependency>
312 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700313 <groupId>io.netty</groupId>
314 <artifactId>netty-codec</artifactId>
315 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700316 </dependency>
Madan Jampani824a7c12014-10-21 09:46:15 -0700317 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700318 <groupId>io.netty</groupId>
319 <artifactId>netty-transport-native-epoll</artifactId>
320 <version>${netty4.version}</version>
Madan Jampani824a7c12014-10-21 09:46:15 -0700321 </dependency>
Yuta HIGUCHIb87ef952014-10-28 23:34:23 -0700322 <dependency>
323 <groupId>joda-time</groupId>
324 <artifactId>joda-time</artifactId>
325 <version>2.5</version>
326 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700327 </dependencies>
328 </dependencyManagement>
329
330 <dependencies>
331 <dependency>
332 <groupId>junit</groupId>
333 <artifactId>junit</artifactId>
334 </dependency>
335 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700336 <groupId>org.hamcrest</groupId>
337 <artifactId>hamcrest-core</artifactId>
338 </dependency>
339 <dependency>
340 <groupId>org.hamcrest</groupId>
341 <artifactId>hamcrest-library</artifactId>
342 </dependency>
343 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700344 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700345 <artifactId>slf4j-api</artifactId>
346 </dependency>
347 <dependency>
348 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700349 <artifactId>slf4j-jdk14</artifactId>
350 </dependency>
351 </dependencies>
tom09419512014-08-15 11:28:43 -0700352
353 <build>
354 <pluginManagement>
355 <plugins>
356 <plugin>
357 <groupId>org.apache.maven.plugins</groupId>
358 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700359 <!-- TODO: update once following issue is fixed. -->
360 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
361 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700362 <configuration>
363 <source>1.7</source>
364 <target>1.7</target>
365 </configuration>
366 </plugin>
367
368 <plugin>
369 <groupId>org.apache.maven.plugins</groupId>
370 <artifactId>maven-surefire-plugin</artifactId>
371 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700372 <configuration>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700373 <redirectTestOutputToFile>true
374 </redirectTestOutputToFile>
tom64888122014-08-27 21:47:46 -0700375 <printSummary>true</printSummary>
376 </configuration>
tom09419512014-08-15 11:28:43 -0700377 </plugin>
378
379 <plugin>
380 <groupId>org.apache.maven.plugins</groupId>
381 <artifactId>maven-jar-plugin</artifactId>
382 <version>2.3.1</version>
383 <executions>
384 <execution>
385 <phase>package</phase>
386 <goals>
387 <goal>test-jar</goal>
388 </goals>
389 </execution>
390 </executions>
391 </plugin>
392
393 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700394 <groupId>org.apache.maven.plugins</groupId>
395 <artifactId>maven-resources-plugin</artifactId>
396 <version>2.6</version>
397 </plugin>
398
399 <plugin>
tom09419512014-08-15 11:28:43 -0700400 <groupId>org.apache.felix</groupId>
401 <artifactId>maven-bundle-plugin</artifactId>
402 <version>2.3.7</version>
403 <extensions>true</extensions>
404 </plugin>
405
406 <plugin>
407 <groupId>org.apache.felix</groupId>
408 <artifactId>maven-scr-plugin</artifactId>
409 <version>1.15.0</version>
410 <executions>
411 <execution>
412 <id>generate-scr-srcdescriptor</id>
413 <goals>
414 <goal>scr</goal>
415 </goals>
416 </execution>
417 </executions>
418 <configuration>
419 <supportedProjectTypes>
420 <supportedProjectType>bundle</supportedProjectType>
421 <supportedProjectType>war</supportedProjectType>
422 </supportedProjectTypes>
423 </configuration>
424 </plugin>
425
tom09419512014-08-15 11:28:43 -0700426 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700427 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
428 <plugin>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700429 <groupId>org.eclipse.m2e</groupId>
430 <artifactId>lifecycle-mapping</artifactId>
431 <version>1.0.0</version>
432 <configuration>
433 <lifecycleMappingMetadata>
434 <pluginExecutions>
435 <pluginExecution>
436 <pluginExecutionFilter>
437 <groupId>org.jacoco</groupId>
438 <artifactId>
439 jacoco-maven-plugin
440 </artifactId>
441 <versionRange>
442 [0.7.1.201405082137,)
443 </versionRange>
444 <goals>
445 <goal>prepare-agent</goal>
446 </goals>
447 </pluginExecutionFilter>
448 <action>
449 <ignore></ignore>
450 </action>
451 </pluginExecution>
452 </pluginExecutions>
453 </lifecycleMappingMetadata>
454 </configuration>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700455 </plugin>
tom09419512014-08-15 11:28:43 -0700456 </plugins>
tom09419512014-08-15 11:28:43 -0700457 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700458
459 <plugins>
460 <plugin>
461 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700462 <artifactId>maven-jar-plugin</artifactId>
463 </plugin>
464
465 <plugin>
466 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700467 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHIee0ae6c2014-10-18 18:11:57 -0700468 <version>2.13</version>
tom0eb04ca2014-08-25 14:34:51 -0700469 <dependencies>
470 <dependency>
471 <groupId>org.onlab.tools</groupId>
472 <artifactId>onos-build-conf</artifactId>
473 <version>1.0</version>
474 </dependency>
475 </dependencies>
476 <configuration>
477 <configLocation>onos/checkstyle.xml</configLocation>
478 <suppressionsLocation>onos/suppressions.xml
479 </suppressionsLocation>
480 <failsOnError>false</failsOnError>
481 <logViolationsToConsole>true</logViolationsToConsole>
482 <includeTestSourceDirectory>true
483 </includeTestSourceDirectory>
484 </configuration>
485 <executions>
486 <execution>
487 <id>validate-checkstyle</id>
488 <phase>verify</phase>
489 <goals>
490 <goal>check</goal>
491 </goals>
492 </execution>
493 </executions>
494 </plugin>
495
496 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700497 <groupId>org.apache.maven.plugins</groupId>
498 <artifactId>maven-pmd-plugin</artifactId>
499 <version>3.2</version>
500 <configuration>
501 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700502 </excludes>
503 <rulesets>
504 <ruleset>onos/pmd.xml</ruleset>
505 </rulesets>
506 </configuration>
507 <executions>
508 <execution>
509 <id>validate-pmd</id>
510 <phase>verify</phase>
511 <goals>
512 <!-- Uncomment this goal to make the build fail on pmd errors -->
513 <!--<goal>check</goal>-->
514 </goals>
515 </execution>
516 </executions>
517 </plugin>
518
519 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700520 <groupId>org.jacoco</groupId>
521 <artifactId>jacoco-maven-plugin</artifactId>
522 <version>0.7.1.201405082137</version>
523 <executions>
524 <execution>
525 <id>default-prepare-agent</id>
526 <goals>
527 <goal>prepare-agent</goal>
528 </goals>
529 </execution>
530 <execution>
531 <id>default-report</id>
532 <phase>prepare-package</phase>
533 <goals>
534 <goal>report</goal>
535 </goals>
536 </execution>
537 </executions>
538 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700539 </plugins>
tom09419512014-08-15 11:28:43 -0700540 </build>
alshabib522d9872014-08-15 10:35:16 -0700541
tom0eb04ca2014-08-25 14:34:51 -0700542 <reporting>
543 <plugins>
544 <plugin>
545 <groupId>org.apache.maven.plugins</groupId>
546 <artifactId>maven-checkstyle-plugin</artifactId>
547 <version>2.12.1</version>
548 <configuration>
549 <configLocation>onos/checkstyle.xml</configLocation>
550 </configuration>
551 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700552
553 <plugin>
554 <groupId>org.apache.maven.plugins</groupId>
555 <artifactId>maven-pmd-plugin</artifactId>
556 <version>3.2</version>
557 <configuration>
558 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700559 </excludes>
560 <rulesets>
561 <ruleset>onos/pmd.xml</ruleset>
562 </rulesets>
563 </configuration>
564 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700565 </plugins>
tom0eb04ca2014-08-25 14:34:51 -0700566 </reporting>
alshabib522d9872014-08-15 10:35:16 -0700567</project>