blob: 40b872cc49006600b6b370efc2db46be2051366d [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
tom0eb04ca2014-08-25 14:34:51 -07007 <groupId>org.onlab.onos</groupId>
tom09419512014-08-15 11:28:43 -07008 <artifactId>onos</artifactId>
9 <packaging>pom</packaging>
10 <version>1.0.0-SNAPSHOT</version>
alshabib522d9872014-08-15 10:35:16 -070011
tom0eb04ca2014-08-25 14:34:51 -070012 <description>Open Networking Operating System root project</description>
tom09419512014-08-15 11:28:43 -070013
14 <modules>
tom0eb04ca2014-08-25 14:34:51 -070015 <module>tools/build/conf</module>
16 <module>utils</module>
tome2dc27a2014-09-09 12:41:21 -070017 <module>core</module>
tom0eb04ca2014-08-25 14:34:51 -070018 <module>web</module>
19 <module>cli</module>
20 <module>providers</module>
tomf8b8d672014-09-17 13:07:23 -070021 <module>openflow</module>
tom8bb16062014-09-12 14:47:46 -070022 <module>apps</module>
tom09419512014-08-15 11:28:43 -070023 <module>features</module>
tomaa49a1e2014-09-12 23:11:46 -070024 <module>tools/package/branding</module>
tom09419512014-08-15 11:28:43 -070025 </modules>
26
27 <url>http://onlab.us/</url>
28
29 <licenses>
30 <license>
31 <!-- TODO: Is this really our license scheme? -->
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 </license>
35 </licenses>
36
Yuta HIGUCHIe2efe722014-09-19 14:37:34 -070037 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -070039 <netty4.version>4.0.23.Final</netty4.version>
Yuta HIGUCHIe2efe722014-09-19 14:37:34 -070040 </properties>
41
tom0eb04ca2014-08-25 14:34:51 -070042 <dependencyManagement>
43 <dependencies>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <version>4.11</version>
48 <scope>test</scope>
49 </dependency>
tom09419512014-08-15 11:28:43 -070050
tom0eb04ca2014-08-25 14:34:51 -070051 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -070052 <groupId>org.hamcrest</groupId>
53 <artifactId>hamcrest-core</artifactId>
54 <version>1.3</version>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.hamcrest</groupId>
59 <artifactId>hamcrest-library</artifactId>
60 <version>1.3</version>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070065 <groupId>org.slf4j</groupId>
66 <artifactId>slf4j-api</artifactId>
67 <version>1.7.6</version>
68 <scope>provided</scope>
69 </dependency>
70
71 <dependency>
72 <groupId>org.slf4j</groupId>
pankajb57fae22014-10-06 18:28:21 -070073 <artifactId>slf4j-core</artifactId>
74 <version>1.7.6</version>
75 <scope>test</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -070080 <artifactId>slf4j-jdk14</artifactId>
81 <version>1.7.6</version>
82 <scope>test</scope>
83 </dependency>
84
85 <dependency>
86 <groupId>com.google.guava</groupId>
87 <artifactId>guava</artifactId>
tomeadbb462014-09-07 16:10:19 -070088 <version>18.0</version>
tom0eb04ca2014-08-25 14:34:51 -070089 </dependency>
90
Madan Jampania185d862014-09-30 11:32:31 -070091
92 <dependency>
93 <groupId>io.netty</groupId>
alshabibdf652ad2014-09-09 11:53:19 -070094 <artifactId>netty</artifactId>
95 <version>3.9.0.Final</version>
96 </dependency>
97
tomde8d9682014-08-27 01:11:43 -070098 <dependency>
99 <groupId>com.google.guava</groupId>
100 <artifactId>guava-testlib</artifactId>
tomeadbb462014-09-07 16:10:19 -0700101 <version>18.0</version>
tomde8d9682014-08-27 01:11:43 -0700102 <scope>test</scope>
103 </dependency>
104
tom6d2a43e2014-09-08 01:50:20 -0700105 <dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700106 <groupId>com.googlecode.concurrent-trees</groupId>
107 <artifactId>concurrent-trees</artifactId>
108 <version>2.4.0</version>
109 </dependency>
110
111 <dependency>
112 <groupId>commons-lang</groupId>
tom6d2a43e2014-09-08 01:50:20 -0700113 <artifactId>commons-lang</artifactId>
114 <version>2.6</version>
115 </dependency>
tomde8d9682014-08-27 01:11:43 -0700116
tom66a7eb22014-09-22 11:58:56 -0700117 <dependency>
118 <groupId>org.apache.commons</groupId>
119 <artifactId>commons-lang3</artifactId>
120 <version>3.3.2</version>
121 </dependency>
122
Brian O'Connorf3d06162014-10-02 15:54:12 -0700123 <dependency>
124 <groupId>org.codehaus.jackson</groupId>
125 <artifactId>jackson-core-asl</artifactId>
126 <version>1.9.13</version>
127 </dependency>
128 <dependency>
129 <groupId>org.codehaus.jackson</groupId>
130 <artifactId>jackson-mapper-asl</artifactId>
131 <version>1.9.13</version>
132 </dependency>
Jonathan Hart74f9c3b2014-09-29 20:03:50 -0700133
Jonathan Hartb4758a92014-09-24 10:46:45 -0700134 <dependency>
135 <groupId>org.easymock</groupId>
136 <artifactId>easymock</artifactId>
137 <version>3.2</version>
138 <scope>test</scope>
139 </dependency>
tom66a7eb22014-09-22 11:58:56 -0700140
tom0eb04ca2014-08-25 14:34:51 -0700141 <!-- Web related -->
142 <dependency>
143 <groupId>com.sun.jersey</groupId>
144 <artifactId>jersey-servlet</artifactId>
145 <version>1.18.1</version>
146 <scope>provided</scope>
147 </dependency>
148 <dependency>
149 <groupId>com.fasterxml.jackson.core</groupId>
150 <artifactId>jackson-databind</artifactId>
151 <version>2.4.2</version>
152 <scope>provided</scope>
153 </dependency>
154 <dependency>
155 <groupId>com.fasterxml.jackson.core</groupId>
156 <artifactId>jackson-annotations</artifactId>
157 <version>2.4.2</version>
158 <scope>provided</scope>
159 </dependency>
160
161 <!-- OSGi related -->
162 <dependency>
163 <groupId>org.osgi</groupId>
164 <artifactId>org.osgi.core</artifactId>
165 <version>4.3.1</version>
166 <scope>provided</scope>
167 </dependency>
168 <dependency>
tomc16656f2014-10-15 18:30:31 -0700169 <groupId>org.osgi</groupId>
170 <artifactId>org.osgi.compendium</artifactId>
171 <version>4.3.1</version>
172 <scope>provided</scope>
173 </dependency>
174 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700175 <groupId>org.apache.felix</groupId>
176 <artifactId>org.apache.felix.scr.annotations</artifactId>
177 <version>1.9.8</version>
178 <scope>provided</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.karaf.shell</groupId>
182 <artifactId>org.apache.karaf.shell.console</artifactId>
183 <version>3.0.1</version>
184 <scope>provided</scope>
185 </dependency>
186
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700187 <dependency>
tom14dc4d02014-09-26 12:43:14 -0700188 <groupId>org.livetribe.slp</groupId>
189 <artifactId>livetribe-slp</artifactId>
190 <version>2.2.1</version>
191 </dependency>
192
193 <dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700194 <groupId>com.hazelcast</groupId>
195 <artifactId>hazelcast</artifactId>
196 <version>3.3</version>
197 </dependency>
198 <dependency>
tomdc66b382014-09-22 17:05:47 -0700199 <groupId>com.eclipsesource.minimal-json</groupId>
200 <artifactId>minimal-json</artifactId>
201 <version>0.9.1</version>
202 </dependency>
203 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -0700204 <groupId>com.esotericsoftware</groupId>
205 <artifactId>kryo</artifactId>
206 <version>3.0.0</version>
207 </dependency>
208 <dependency>
209 <groupId>com.esotericsoftware</groupId>
210 <artifactId>reflectasm</artifactId>
211 <version>1.10.0</version>
212 <type>bundle</type>
213 </dependency>
214 <dependency>
215 <groupId>org.ow2.asm</groupId>
216 <artifactId>asm</artifactId>
217 <version>4.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700218 </dependency>
219 <dependency>
tom66a7eb22014-09-22 11:58:56 -0700220 <groupId>com.esotericsoftware</groupId>
221 <artifactId>minlog</artifactId>
222 <version>1.3.0</version>
223 </dependency>
224 <dependency>
225 <groupId>org.objenesis</groupId>
226 <artifactId>objenesis</artifactId>
227 <version>2.1</version>
228 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700229
tom0eb04ca2014-08-25 14:34:51 -0700230 <!-- ONOS related -->
231 <dependency>
232 <groupId>org.onlab.onos</groupId>
tom5f38b3a2014-08-27 23:50:54 -0700233 <artifactId>onlab-misc</artifactId>
234 <version>${project.version}</version>
235 </dependency>
tom931af4e2014-09-13 12:00:57 -0700236 <dependency>
237 <groupId>org.onlab.onos</groupId>
tomf110fff2014-09-26 00:38:18 -0700238 <artifactId>onlab-nio</artifactId>
239 <version>${project.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>org.onlab.onos</groupId>
tom0872a172014-09-23 11:24:26 -0700243 <artifactId>onlab-osgi</artifactId>
244 <version>${project.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>org.onlab.onos</groupId>
tom931af4e2014-09-13 12:00:57 -0700248 <artifactId>onlab-junit</artifactId>
249 <version>1.0.0-SNAPSHOT</version>
250 <scope>test</scope>
251 </dependency>
tom5f38b3a2014-08-27 23:50:54 -0700252
253 <dependency>
254 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700255 <artifactId>onos-api</artifactId>
256 <version>${project.version}</version>
257 </dependency>
258 <dependency>
259 <groupId>org.onlab.onos</groupId>
tom61359e92014-09-16 15:50:27 -0700260 <artifactId>onos-api</artifactId>
261 <version>${project.version}</version>
262 <classifier>tests</classifier>
263 <scope>test</scope>
264 </dependency>
265
266 <dependency>
267 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700268 <artifactId>onos-of-api</artifactId>
269 <version>${project.version}</version>
270 </dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700271
272 <dependency>
273 <groupId>org.onlab.onos</groupId>
274 <artifactId>onlab-thirdparty</artifactId>
275 <version>${project.version}</version>
276 </dependency>
277
tom61359e92014-09-16 15:50:27 -0700278 <dependency>
279 <groupId>org.onlab.onos</groupId>
280 <artifactId>onos-of-api</artifactId>
281 <version>${project.version}</version>
282 <classifier>tests</classifier>
283 <scope>test</scope>
284 </dependency>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700285 <dependency>
286 <groupId>commons-pool</groupId>
287 <artifactId>commons-pool</artifactId>
288 <version>1.6</version>
289 </dependency>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700290 <dependency>
291 <groupId>io.netty</groupId>
292 <artifactId>netty-common</artifactId>
293 <version>${netty4.version}</version>
294 </dependency>
295 <dependency>
296 <groupId>io.netty</groupId>
297 <artifactId>netty-buffer</artifactId>
298 <version>${netty4.version}</version>
299 </dependency>
300 <dependency>
301 <groupId>io.netty</groupId>
302 <artifactId>netty-transport</artifactId>
303 <version>${netty4.version}</version>
304 </dependency>
305 <dependency>
306 <groupId>io.netty</groupId>
307 <artifactId>netty-handler</artifactId>
308 <version>${netty4.version}</version>
309 </dependency>
310 <dependency>
311 <groupId>io.netty</groupId>
312 <artifactId>netty-codec</artifactId>
313 <version>${netty4.version}</version>
314 </dependency>
Madan Jampani824a7c12014-10-21 09:46:15 -0700315 <dependency>
316 <groupId>io.netty</groupId>
317 <artifactId>netty-transport-native-epoll</artifactId>
318 <version>${netty4.version}</version>
319 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700320 </dependencies>
321 </dependencyManagement>
322
323 <dependencies>
324 <dependency>
325 <groupId>junit</groupId>
326 <artifactId>junit</artifactId>
327 </dependency>
328 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700329 <groupId>org.hamcrest</groupId>
330 <artifactId>hamcrest-core</artifactId>
331 </dependency>
332 <dependency>
333 <groupId>org.hamcrest</groupId>
334 <artifactId>hamcrest-library</artifactId>
335 </dependency>
336 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700337 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700338 <artifactId>slf4j-api</artifactId>
339 </dependency>
340 <dependency>
341 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700342 <artifactId>slf4j-jdk14</artifactId>
343 </dependency>
344 </dependencies>
tom09419512014-08-15 11:28:43 -0700345
346 <build>
347 <pluginManagement>
348 <plugins>
349 <plugin>
350 <groupId>org.apache.maven.plugins</groupId>
351 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700352 <!-- TODO: update once following issue is fixed. -->
353 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
354 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700355 <configuration>
356 <source>1.7</source>
357 <target>1.7</target>
358 </configuration>
359 </plugin>
360
361 <plugin>
362 <groupId>org.apache.maven.plugins</groupId>
363 <artifactId>maven-surefire-plugin</artifactId>
364 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700365 <configuration>
366 <redirectTestOutputToFile>true</redirectTestOutputToFile>
367 <printSummary>true</printSummary>
368 </configuration>
tom09419512014-08-15 11:28:43 -0700369 </plugin>
370
371 <plugin>
372 <groupId>org.apache.maven.plugins</groupId>
373 <artifactId>maven-jar-plugin</artifactId>
374 <version>2.3.1</version>
375 <executions>
376 <execution>
377 <phase>package</phase>
378 <goals>
379 <goal>test-jar</goal>
380 </goals>
381 </execution>
382 </executions>
383 </plugin>
384
385 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700386 <groupId>org.apache.maven.plugins</groupId>
387 <artifactId>maven-resources-plugin</artifactId>
388 <version>2.6</version>
389 </plugin>
390
391 <plugin>
tom09419512014-08-15 11:28:43 -0700392 <groupId>org.apache.felix</groupId>
393 <artifactId>maven-bundle-plugin</artifactId>
394 <version>2.3.7</version>
395 <extensions>true</extensions>
396 </plugin>
397
398 <plugin>
399 <groupId>org.apache.felix</groupId>
400 <artifactId>maven-scr-plugin</artifactId>
401 <version>1.15.0</version>
402 <executions>
403 <execution>
404 <id>generate-scr-srcdescriptor</id>
405 <goals>
406 <goal>scr</goal>
407 </goals>
408 </execution>
409 </executions>
410 <configuration>
411 <supportedProjectTypes>
412 <supportedProjectType>bundle</supportedProjectType>
413 <supportedProjectType>war</supportedProjectType>
414 </supportedProjectTypes>
415 </configuration>
416 </plugin>
417
tom09419512014-08-15 11:28:43 -0700418 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700419 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
420 <plugin>
421 <groupId>org.eclipse.m2e</groupId>
422 <artifactId>lifecycle-mapping</artifactId>
423 <version>1.0.0</version>
424 <configuration>
425 <lifecycleMappingMetadata>
426 <pluginExecutions>
427 <pluginExecution>
428 <pluginExecutionFilter>
429 <groupId>org.jacoco</groupId>
430 <artifactId>
431 jacoco-maven-plugin
432 </artifactId>
433 <versionRange>
434 [0.7.1.201405082137,)
435 </versionRange>
436 <goals>
437 <goal>prepare-agent</goal>
438 </goals>
439 </pluginExecutionFilter>
440 <action>
441 <ignore></ignore>
442 </action>
443 </pluginExecution>
444 </pluginExecutions>
445 </lifecycleMappingMetadata>
446 </configuration>
447 </plugin>
tom09419512014-08-15 11:28:43 -0700448 </plugins>
tom09419512014-08-15 11:28:43 -0700449 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700450
451 <plugins>
452 <plugin>
453 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700454 <artifactId>maven-jar-plugin</artifactId>
455 </plugin>
456
457 <plugin>
458 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700459 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHIee0ae6c2014-10-18 18:11:57 -0700460 <version>2.13</version>
tom0eb04ca2014-08-25 14:34:51 -0700461 <dependencies>
462 <dependency>
463 <groupId>org.onlab.tools</groupId>
464 <artifactId>onos-build-conf</artifactId>
465 <version>1.0</version>
466 </dependency>
467 </dependencies>
468 <configuration>
469 <configLocation>onos/checkstyle.xml</configLocation>
470 <suppressionsLocation>onos/suppressions.xml
471 </suppressionsLocation>
472 <failsOnError>false</failsOnError>
473 <logViolationsToConsole>true</logViolationsToConsole>
474 <includeTestSourceDirectory>true
475 </includeTestSourceDirectory>
476 </configuration>
477 <executions>
478 <execution>
479 <id>validate-checkstyle</id>
480 <phase>verify</phase>
481 <goals>
482 <goal>check</goal>
483 </goals>
484 </execution>
485 </executions>
486 </plugin>
487
488 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700489 <groupId>org.apache.maven.plugins</groupId>
490 <artifactId>maven-pmd-plugin</artifactId>
491 <version>3.2</version>
492 <configuration>
493 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700494 </excludes>
495 <rulesets>
496 <ruleset>onos/pmd.xml</ruleset>
497 </rulesets>
498 </configuration>
499 <executions>
500 <execution>
501 <id>validate-pmd</id>
502 <phase>verify</phase>
503 <goals>
504 <!-- Uncomment this goal to make the build fail on pmd errors -->
505 <!--<goal>check</goal>-->
506 </goals>
507 </execution>
508 </executions>
509 </plugin>
510
511 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700512 <groupId>org.jacoco</groupId>
513 <artifactId>jacoco-maven-plugin</artifactId>
514 <version>0.7.1.201405082137</version>
515 <executions>
516 <execution>
517 <id>default-prepare-agent</id>
518 <goals>
519 <goal>prepare-agent</goal>
520 </goals>
521 </execution>
522 <execution>
523 <id>default-report</id>
524 <phase>prepare-package</phase>
525 <goals>
526 <goal>report</goal>
527 </goals>
528 </execution>
529 </executions>
530 </plugin>
531
532 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700533 <groupId>org.apache.maven.plugins</groupId>
534 <artifactId>maven-javadoc-plugin</artifactId>
535 <version>2.9.1</version>
536 <configuration>
tom578ebdc2014-09-11 11:12:51 -0700537 <show>package</show>
tom0eb04ca2014-08-25 14:34:51 -0700538 <docfilessubdirs>true</docfilessubdirs>
539 <doctitle>ONOS Java API</doctitle>
540 <groups>
541 <group>
542 <title>Network Model &amp; Services</title>
543 <packages>
tom5d4e73c2014-09-24 18:38:24 -0700544 org.onlab.onos:org.onlab.onos.*
tom0eb04ca2014-08-25 14:34:51 -0700545 </packages>
546 </group>
547 <group>
548 <title>Core Subsystems</title>
549 <packages>
Thomas Vachuskae855d502014-10-16 15:53:44 -0700550 org.onlab.onos.impl:org.onlab.onos.cluster.impl:org.onlab.onos.net.device.impl:org.onlab.onos.net.link.impl:org.onlab.onos.net.host.impl:org.onlab.onos.net.topology.impl:org.onlab.onos.net.packet.impl:org.onlab.onos.net.flow.impl:org.onlab.onos.store.trivial.*:org.onlab.onos.net.*.impl:org.onlab.onos.event.impl:org.onlab.onos.store.*:org.onlab.onos.net.intent.impl:org.onlab.onos.net.proxyarp.impl:org.onlab.onos.mastership.impl:org.onlab.onos.json:org.onlab.onos.json.*
tom0eb04ca2014-08-25 14:34:51 -0700551 </packages>
552 </group>
553 <group>
554 <title>OpenFlow Providers &amp; Controller
555 </title>
556 <packages>
tom9c94c5b2014-09-17 13:14:42 -0700557 org.onlab.onos.provider.of.*:org.onlab.onos.openflow.*
tom0eb04ca2014-08-25 14:34:51 -0700558 </packages>
559 </group>
560 <group>
561 <title>Utilities</title>
562 <packages>
tom984d7822014-08-29 12:02:59 -0700563 org.onlab.*
tom0eb04ca2014-08-25 14:34:51 -0700564 </packages>
565 </group>
566 <group>
567 <title>GUI, REST &amp; Command-Line</title>
568 <packages>
569 org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.*
570 </packages>
571 </group>
tom8bb16062014-09-12 14:47:46 -0700572 <group>
573 <title>Sample Applications</title>
574 <packages>
Thomas Vachuskae855d502014-10-16 15:53:44 -0700575 org.onlab.onos.tvue:org.onlab.onos.fwd:org.onlab.onos.ifwd:org.onlab.onos.mobility:org.onlab.onos.proxyarp:org.onlab.onos.foo:org.onlab.onos.calendar
tom8bb16062014-09-12 14:47:46 -0700576 </packages>
577 </group>
tom0eb04ca2014-08-25 14:34:51 -0700578 </groups>
Thomas Vachuskae855d502014-10-16 15:53:44 -0700579 <excludePackageNames>org.onlab.thirdparty</excludePackageNames>
tom0eb04ca2014-08-25 14:34:51 -0700580 </configuration>
581 </plugin>
582
583 </plugins>
tom09419512014-08-15 11:28:43 -0700584 </build>
alshabib522d9872014-08-15 10:35:16 -0700585
tom0eb04ca2014-08-25 14:34:51 -0700586 <reporting>
587 <plugins>
588 <plugin>
589 <groupId>org.apache.maven.plugins</groupId>
590 <artifactId>maven-checkstyle-plugin</artifactId>
591 <version>2.12.1</version>
592 <configuration>
593 <configLocation>onos/checkstyle.xml</configLocation>
594 </configuration>
595 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700596
597 <plugin>
598 <groupId>org.apache.maven.plugins</groupId>
599 <artifactId>maven-pmd-plugin</artifactId>
600 <version>3.2</version>
601 <configuration>
602 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700603 </excludes>
604 <rulesets>
605 <ruleset>onos/pmd.xml</ruleset>
606 </rulesets>
607 </configuration>
608 </plugin>
609
tom0eb04ca2014-08-25 14:34:51 -0700610 </plugins>
611
612 </reporting>
613
alshabib522d9872014-08-15 10:35:16 -0700614</project>