blob: ce02451bf2283b70356e9ef4c6183741e7d0a76a [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>
251 <version>1.0.0-SNAPSHOT</version>
252 <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>
tom0eb04ca2014-08-25 14:34:51 -0700322 </dependencies>
323 </dependencyManagement>
324
325 <dependencies>
326 <dependency>
327 <groupId>junit</groupId>
328 <artifactId>junit</artifactId>
329 </dependency>
330 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700331 <groupId>org.hamcrest</groupId>
332 <artifactId>hamcrest-core</artifactId>
333 </dependency>
334 <dependency>
335 <groupId>org.hamcrest</groupId>
336 <artifactId>hamcrest-library</artifactId>
337 </dependency>
338 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700339 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700340 <artifactId>slf4j-api</artifactId>
341 </dependency>
342 <dependency>
343 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700344 <artifactId>slf4j-jdk14</artifactId>
345 </dependency>
346 </dependencies>
tom09419512014-08-15 11:28:43 -0700347
348 <build>
349 <pluginManagement>
350 <plugins>
351 <plugin>
352 <groupId>org.apache.maven.plugins</groupId>
353 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700354 <!-- TODO: update once following issue is fixed. -->
355 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
356 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700357 <configuration>
358 <source>1.7</source>
359 <target>1.7</target>
360 </configuration>
361 </plugin>
362
363 <plugin>
364 <groupId>org.apache.maven.plugins</groupId>
365 <artifactId>maven-surefire-plugin</artifactId>
366 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700367 <configuration>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700368 <redirectTestOutputToFile>true
369 </redirectTestOutputToFile>
tom64888122014-08-27 21:47:46 -0700370 <printSummary>true</printSummary>
371 </configuration>
tom09419512014-08-15 11:28:43 -0700372 </plugin>
373
374 <plugin>
375 <groupId>org.apache.maven.plugins</groupId>
376 <artifactId>maven-jar-plugin</artifactId>
377 <version>2.3.1</version>
378 <executions>
379 <execution>
380 <phase>package</phase>
381 <goals>
382 <goal>test-jar</goal>
383 </goals>
384 </execution>
385 </executions>
386 </plugin>
387
388 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700389 <groupId>org.apache.maven.plugins</groupId>
390 <artifactId>maven-resources-plugin</artifactId>
391 <version>2.6</version>
392 </plugin>
393
394 <plugin>
tom09419512014-08-15 11:28:43 -0700395 <groupId>org.apache.felix</groupId>
396 <artifactId>maven-bundle-plugin</artifactId>
397 <version>2.3.7</version>
398 <extensions>true</extensions>
399 </plugin>
400
401 <plugin>
402 <groupId>org.apache.felix</groupId>
403 <artifactId>maven-scr-plugin</artifactId>
404 <version>1.15.0</version>
405 <executions>
406 <execution>
407 <id>generate-scr-srcdescriptor</id>
408 <goals>
409 <goal>scr</goal>
410 </goals>
411 </execution>
412 </executions>
413 <configuration>
414 <supportedProjectTypes>
415 <supportedProjectType>bundle</supportedProjectType>
416 <supportedProjectType>war</supportedProjectType>
417 </supportedProjectTypes>
418 </configuration>
419 </plugin>
420
tom09419512014-08-15 11:28:43 -0700421 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700422 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
423 <plugin>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700424 <groupId>org.eclipse.m2e</groupId>
425 <artifactId>lifecycle-mapping</artifactId>
426 <version>1.0.0</version>
427 <configuration>
428 <lifecycleMappingMetadata>
429 <pluginExecutions>
430 <pluginExecution>
431 <pluginExecutionFilter>
432 <groupId>org.jacoco</groupId>
433 <artifactId>
434 jacoco-maven-plugin
435 </artifactId>
436 <versionRange>
437 [0.7.1.201405082137,)
438 </versionRange>
439 <goals>
440 <goal>prepare-agent</goal>
441 </goals>
442 </pluginExecutionFilter>
443 <action>
444 <ignore></ignore>
445 </action>
446 </pluginExecution>
447 </pluginExecutions>
448 </lifecycleMappingMetadata>
449 </configuration>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700450 </plugin>
tom09419512014-08-15 11:28:43 -0700451 </plugins>
tom09419512014-08-15 11:28:43 -0700452 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700453
454 <plugins>
455 <plugin>
456 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700457 <artifactId>maven-jar-plugin</artifactId>
458 </plugin>
459
460 <plugin>
461 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700462 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHIee0ae6c2014-10-18 18:11:57 -0700463 <version>2.13</version>
tom0eb04ca2014-08-25 14:34:51 -0700464 <dependencies>
465 <dependency>
466 <groupId>org.onlab.tools</groupId>
467 <artifactId>onos-build-conf</artifactId>
468 <version>1.0</version>
469 </dependency>
470 </dependencies>
471 <configuration>
472 <configLocation>onos/checkstyle.xml</configLocation>
473 <suppressionsLocation>onos/suppressions.xml
474 </suppressionsLocation>
475 <failsOnError>false</failsOnError>
476 <logViolationsToConsole>true</logViolationsToConsole>
477 <includeTestSourceDirectory>true
478 </includeTestSourceDirectory>
479 </configuration>
480 <executions>
481 <execution>
482 <id>validate-checkstyle</id>
483 <phase>verify</phase>
484 <goals>
485 <goal>check</goal>
486 </goals>
487 </execution>
488 </executions>
489 </plugin>
490
491 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700492 <groupId>org.apache.maven.plugins</groupId>
493 <artifactId>maven-pmd-plugin</artifactId>
494 <version>3.2</version>
495 <configuration>
496 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700497 </excludes>
498 <rulesets>
499 <ruleset>onos/pmd.xml</ruleset>
500 </rulesets>
501 </configuration>
502 <executions>
503 <execution>
504 <id>validate-pmd</id>
505 <phase>verify</phase>
506 <goals>
507 <!-- Uncomment this goal to make the build fail on pmd errors -->
508 <!--<goal>check</goal>-->
509 </goals>
510 </execution>
511 </executions>
512 </plugin>
513
514 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700515 <groupId>org.jacoco</groupId>
516 <artifactId>jacoco-maven-plugin</artifactId>
517 <version>0.7.1.201405082137</version>
518 <executions>
519 <execution>
520 <id>default-prepare-agent</id>
521 <goals>
522 <goal>prepare-agent</goal>
523 </goals>
524 </execution>
525 <execution>
526 <id>default-report</id>
527 <phase>prepare-package</phase>
528 <goals>
529 <goal>report</goal>
530 </goals>
531 </execution>
532 </executions>
533 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700534 </plugins>
tom09419512014-08-15 11:28:43 -0700535 </build>
alshabib522d9872014-08-15 10:35:16 -0700536
tom0eb04ca2014-08-25 14:34:51 -0700537 <reporting>
538 <plugins>
539 <plugin>
540 <groupId>org.apache.maven.plugins</groupId>
541 <artifactId>maven-checkstyle-plugin</artifactId>
542 <version>2.12.1</version>
543 <configuration>
544 <configLocation>onos/checkstyle.xml</configLocation>
545 </configuration>
546 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700547
548 <plugin>
549 <groupId>org.apache.maven.plugins</groupId>
550 <artifactId>maven-pmd-plugin</artifactId>
551 <version>3.2</version>
552 <configuration>
553 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700554 </excludes>
555 <rulesets>
556 <ruleset>onos/pmd.xml</ruleset>
557 </rulesets>
558 </configuration>
559 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700560 </plugins>
tom0eb04ca2014-08-25 14:34:51 -0700561 </reporting>
alshabib522d9872014-08-15 10:35:16 -0700562</project>