blob: 5c245162efb1012bdfd9e94f4a22349d26ab993e [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 Jampani1c7b8782014-11-03 12:14:29 -0800321 <classifier>${os.detected.classifier}</classifier>
Madan Jampani824a7c12014-10-21 09:46:15 -0700322 </dependency>
Yuta HIGUCHIb87ef952014-10-28 23:34:23 -0700323 <dependency>
324 <groupId>joda-time</groupId>
325 <artifactId>joda-time</artifactId>
326 <version>2.5</version>
327 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700328 </dependencies>
329 </dependencyManagement>
330
331 <dependencies>
332 <dependency>
333 <groupId>junit</groupId>
334 <artifactId>junit</artifactId>
335 </dependency>
336 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700337 <groupId>org.hamcrest</groupId>
338 <artifactId>hamcrest-core</artifactId>
339 </dependency>
340 <dependency>
341 <groupId>org.hamcrest</groupId>
342 <artifactId>hamcrest-library</artifactId>
343 </dependency>
344 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700345 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700346 <artifactId>slf4j-api</artifactId>
347 </dependency>
348 <dependency>
349 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700350 <artifactId>slf4j-jdk14</artifactId>
351 </dependency>
352 </dependencies>
tom09419512014-08-15 11:28:43 -0700353
354 <build>
355 <pluginManagement>
356 <plugins>
357 <plugin>
358 <groupId>org.apache.maven.plugins</groupId>
359 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700360 <!-- TODO: update once following issue is fixed. -->
361 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
362 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700363 <configuration>
364 <source>1.7</source>
365 <target>1.7</target>
366 </configuration>
367 </plugin>
368
369 <plugin>
370 <groupId>org.apache.maven.plugins</groupId>
371 <artifactId>maven-surefire-plugin</artifactId>
372 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700373 <configuration>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700374 <redirectTestOutputToFile>true
375 </redirectTestOutputToFile>
tom64888122014-08-27 21:47:46 -0700376 <printSummary>true</printSummary>
377 </configuration>
tom09419512014-08-15 11:28:43 -0700378 </plugin>
379
380 <plugin>
381 <groupId>org.apache.maven.plugins</groupId>
382 <artifactId>maven-jar-plugin</artifactId>
383 <version>2.3.1</version>
384 <executions>
385 <execution>
386 <phase>package</phase>
387 <goals>
388 <goal>test-jar</goal>
389 </goals>
390 </execution>
391 </executions>
392 </plugin>
393
394 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700395 <groupId>org.apache.maven.plugins</groupId>
396 <artifactId>maven-resources-plugin</artifactId>
397 <version>2.6</version>
398 </plugin>
399
400 <plugin>
tom09419512014-08-15 11:28:43 -0700401 <groupId>org.apache.felix</groupId>
402 <artifactId>maven-bundle-plugin</artifactId>
403 <version>2.3.7</version>
404 <extensions>true</extensions>
405 </plugin>
406
407 <plugin>
408 <groupId>org.apache.felix</groupId>
409 <artifactId>maven-scr-plugin</artifactId>
410 <version>1.15.0</version>
411 <executions>
412 <execution>
413 <id>generate-scr-srcdescriptor</id>
414 <goals>
415 <goal>scr</goal>
416 </goals>
417 </execution>
418 </executions>
419 <configuration>
420 <supportedProjectTypes>
421 <supportedProjectType>bundle</supportedProjectType>
422 <supportedProjectType>war</supportedProjectType>
423 </supportedProjectTypes>
424 </configuration>
425 </plugin>
426
tom09419512014-08-15 11:28:43 -0700427 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700428 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
429 <plugin>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700430 <groupId>org.eclipse.m2e</groupId>
431 <artifactId>lifecycle-mapping</artifactId>
432 <version>1.0.0</version>
433 <configuration>
434 <lifecycleMappingMetadata>
435 <pluginExecutions>
436 <pluginExecution>
437 <pluginExecutionFilter>
438 <groupId>org.jacoco</groupId>
439 <artifactId>
440 jacoco-maven-plugin
441 </artifactId>
442 <versionRange>
443 [0.7.1.201405082137,)
444 </versionRange>
445 <goals>
446 <goal>prepare-agent</goal>
447 </goals>
448 </pluginExecutionFilter>
449 <action>
450 <ignore></ignore>
451 </action>
452 </pluginExecution>
453 </pluginExecutions>
454 </lifecycleMappingMetadata>
455 </configuration>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700456 </plugin>
tom09419512014-08-15 11:28:43 -0700457 </plugins>
tom09419512014-08-15 11:28:43 -0700458 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700459
460 <plugins>
461 <plugin>
462 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700463 <artifactId>maven-jar-plugin</artifactId>
464 </plugin>
465
466 <plugin>
467 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700468 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHIee0ae6c2014-10-18 18:11:57 -0700469 <version>2.13</version>
tom0eb04ca2014-08-25 14:34:51 -0700470 <dependencies>
471 <dependency>
472 <groupId>org.onlab.tools</groupId>
473 <artifactId>onos-build-conf</artifactId>
474 <version>1.0</version>
475 </dependency>
476 </dependencies>
477 <configuration>
478 <configLocation>onos/checkstyle.xml</configLocation>
479 <suppressionsLocation>onos/suppressions.xml
480 </suppressionsLocation>
481 <failsOnError>false</failsOnError>
482 <logViolationsToConsole>true</logViolationsToConsole>
483 <includeTestSourceDirectory>true
484 </includeTestSourceDirectory>
485 </configuration>
486 <executions>
487 <execution>
488 <id>validate-checkstyle</id>
489 <phase>verify</phase>
490 <goals>
491 <goal>check</goal>
492 </goals>
493 </execution>
494 </executions>
495 </plugin>
496
497 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700498 <groupId>org.apache.maven.plugins</groupId>
499 <artifactId>maven-pmd-plugin</artifactId>
500 <version>3.2</version>
501 <configuration>
502 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700503 </excludes>
504 <rulesets>
505 <ruleset>onos/pmd.xml</ruleset>
506 </rulesets>
507 </configuration>
508 <executions>
509 <execution>
510 <id>validate-pmd</id>
511 <phase>verify</phase>
512 <goals>
513 <!-- Uncomment this goal to make the build fail on pmd errors -->
514 <!--<goal>check</goal>-->
515 </goals>
516 </execution>
517 </executions>
518 </plugin>
519
520 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700521 <groupId>org.jacoco</groupId>
522 <artifactId>jacoco-maven-plugin</artifactId>
523 <version>0.7.1.201405082137</version>
524 <executions>
525 <execution>
526 <id>default-prepare-agent</id>
527 <goals>
528 <goal>prepare-agent</goal>
529 </goals>
530 </execution>
531 <execution>
532 <id>default-report</id>
533 <phase>prepare-package</phase>
534 <goals>
535 <goal>report</goal>
536 </goals>
537 </execution>
538 </executions>
539 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700540 </plugins>
tom09419512014-08-15 11:28:43 -0700541 </build>
alshabib522d9872014-08-15 10:35:16 -0700542
tom0eb04ca2014-08-25 14:34:51 -0700543 <reporting>
544 <plugins>
545 <plugin>
546 <groupId>org.apache.maven.plugins</groupId>
547 <artifactId>maven-checkstyle-plugin</artifactId>
548 <version>2.12.1</version>
549 <configuration>
550 <configLocation>onos/checkstyle.xml</configLocation>
551 </configuration>
552 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700553
554 <plugin>
555 <groupId>org.apache.maven.plugins</groupId>
556 <artifactId>maven-pmd-plugin</artifactId>
557 <version>3.2</version>
558 <configuration>
559 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700560 </excludes>
561 <rulesets>
562 <ruleset>onos/pmd.xml</ruleset>
563 </rulesets>
564 </configuration>
565 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700566 </plugins>
tom0eb04ca2014-08-25 14:34:51 -0700567 </reporting>
alshabib522d9872014-08-15 10:35:16 -0700568</project>