blob: 2e491abc3eaea22cead6fd5ea56ba4a593d651f6 [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
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -070091 <dependency>
Madan Jampania185d862014-09-30 11:32:31 -070092 <groupId>io.netty</groupId>
alshabibdf652ad2014-09-09 11:53:19 -070093 <artifactId>netty</artifactId>
94 <version>3.9.0.Final</version>
95 </dependency>
96
tomde8d9682014-08-27 01:11:43 -070097 <dependency>
98 <groupId>com.google.guava</groupId>
99 <artifactId>guava-testlib</artifactId>
tomeadbb462014-09-07 16:10:19 -0700100 <version>18.0</version>
tomde8d9682014-08-27 01:11:43 -0700101 <scope>test</scope>
102 </dependency>
103
tom6d2a43e2014-09-08 01:50:20 -0700104 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700105 <groupId>com.googlecode.concurrent-trees</groupId>
106 <artifactId>concurrent-trees</artifactId>
107 <version>2.4.0</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700108 </dependency>
109
110 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700111 <groupId>commons-lang</groupId>
tom6d2a43e2014-09-08 01:50:20 -0700112 <artifactId>commons-lang</artifactId>
113 <version>2.6</version>
114 </dependency>
tomde8d9682014-08-27 01:11:43 -0700115
tom66a7eb22014-09-22 11:58:56 -0700116 <dependency>
117 <groupId>org.apache.commons</groupId>
118 <artifactId>commons-lang3</artifactId>
119 <version>3.3.2</version>
120 </dependency>
121
Brian O'Connorf3d06162014-10-02 15:54:12 -0700122 <dependency>
123 <groupId>org.codehaus.jackson</groupId>
124 <artifactId>jackson-core-asl</artifactId>
125 <version>1.9.13</version>
126 </dependency>
127 <dependency>
128 <groupId>org.codehaus.jackson</groupId>
129 <artifactId>jackson-mapper-asl</artifactId>
130 <version>1.9.13</version>
131 </dependency>
Jonathan Hart74f9c3b2014-09-29 20:03:50 -0700132
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700133 <dependency>
134 <groupId>org.easymock</groupId>
135 <artifactId>easymock</artifactId>
136 <version>3.2</version>
137 <scope>test</scope>
138 </dependency>
tom66a7eb22014-09-22 11:58:56 -0700139
tom0eb04ca2014-08-25 14:34:51 -0700140 <!-- Web related -->
141 <dependency>
142 <groupId>com.sun.jersey</groupId>
143 <artifactId>jersey-servlet</artifactId>
144 <version>1.18.1</version>
145 <scope>provided</scope>
146 </dependency>
147 <dependency>
148 <groupId>com.fasterxml.jackson.core</groupId>
149 <artifactId>jackson-databind</artifactId>
150 <version>2.4.2</version>
151 <scope>provided</scope>
152 </dependency>
153 <dependency>
154 <groupId>com.fasterxml.jackson.core</groupId>
155 <artifactId>jackson-annotations</artifactId>
156 <version>2.4.2</version>
157 <scope>provided</scope>
158 </dependency>
159
160 <!-- OSGi related -->
161 <dependency>
162 <groupId>org.osgi</groupId>
163 <artifactId>org.osgi.core</artifactId>
164 <version>4.3.1</version>
165 <scope>provided</scope>
166 </dependency>
167 <dependency>
tomc16656f2014-10-15 18:30:31 -0700168 <groupId>org.osgi</groupId>
169 <artifactId>org.osgi.compendium</artifactId>
170 <version>4.3.1</version>
171 <scope>provided</scope>
172 </dependency>
173 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700174 <groupId>org.apache.felix</groupId>
175 <artifactId>org.apache.felix.scr.annotations</artifactId>
176 <version>1.9.8</version>
177 <scope>provided</scope>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.karaf.shell</groupId>
181 <artifactId>org.apache.karaf.shell.console</artifactId>
182 <version>3.0.1</version>
183 <scope>provided</scope>
184 </dependency>
185
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700186 <dependency>
tom14dc4d02014-09-26 12:43:14 -0700187 <groupId>org.livetribe.slp</groupId>
188 <artifactId>livetribe-slp</artifactId>
189 <version>2.2.1</version>
190 </dependency>
191
192 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700193 <groupId>com.hazelcast</groupId>
194 <artifactId>hazelcast</artifactId>
Yuta HIGUCHI9eedb462014-10-23 12:45:14 -0700195 <version>3.3.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700196 </dependency>
197 <dependency>
tomdc66b382014-09-22 17:05:47 -0700198 <groupId>com.eclipsesource.minimal-json</groupId>
199 <artifactId>minimal-json</artifactId>
200 <version>0.9.1</version>
201 </dependency>
202 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -0700203 <groupId>com.esotericsoftware</groupId>
204 <artifactId>kryo</artifactId>
205 <version>3.0.0</version>
206 </dependency>
207 <dependency>
208 <groupId>com.esotericsoftware</groupId>
209 <artifactId>reflectasm</artifactId>
210 <version>1.10.0</version>
211 <type>bundle</type>
212 </dependency>
213 <dependency>
214 <groupId>org.ow2.asm</groupId>
215 <artifactId>asm</artifactId>
216 <version>4.2</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700217 </dependency>
218 <dependency>
tom66a7eb22014-09-22 11:58:56 -0700219 <groupId>com.esotericsoftware</groupId>
220 <artifactId>minlog</artifactId>
221 <version>1.3.0</version>
222 </dependency>
223 <dependency>
224 <groupId>org.objenesis</groupId>
225 <artifactId>objenesis</artifactId>
226 <version>2.1</version>
227 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700228
tom0eb04ca2014-08-25 14:34:51 -0700229 <!-- ONOS related -->
230 <dependency>
231 <groupId>org.onlab.onos</groupId>
tom5f38b3a2014-08-27 23:50:54 -0700232 <artifactId>onlab-misc</artifactId>
233 <version>${project.version}</version>
234 </dependency>
tom931af4e2014-09-13 12:00:57 -0700235 <dependency>
236 <groupId>org.onlab.onos</groupId>
tomf110fff2014-09-26 00:38:18 -0700237 <artifactId>onlab-nio</artifactId>
238 <version>${project.version}</version>
239 </dependency>
240 <dependency>
241 <groupId>org.onlab.onos</groupId>
tom0872a172014-09-23 11:24:26 -0700242 <artifactId>onlab-osgi</artifactId>
243 <version>${project.version}</version>
244 </dependency>
245 <dependency>
246 <groupId>org.onlab.onos</groupId>
tom931af4e2014-09-13 12:00:57 -0700247 <artifactId>onlab-junit</artifactId>
248 <version>1.0.0-SNAPSHOT</version>
249 <scope>test</scope>
250 </dependency>
tom5f38b3a2014-08-27 23:50:54 -0700251
252 <dependency>
253 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700254 <artifactId>onos-api</artifactId>
255 <version>${project.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>org.onlab.onos</groupId>
tom61359e92014-09-16 15:50:27 -0700259 <artifactId>onos-api</artifactId>
260 <version>${project.version}</version>
261 <classifier>tests</classifier>
262 <scope>test</scope>
263 </dependency>
264
265 <dependency>
266 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700267 <artifactId>onos-of-api</artifactId>
268 <version>${project.version}</version>
269 </dependency>
Jonathan Hart335ef462014-10-16 08:20:46 -0700270
271 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700272 <groupId>org.onlab.onos</groupId>
273 <artifactId>onlab-thirdparty</artifactId>
274 <version>${project.version}</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700275 </dependency>
276
tom61359e92014-09-16 15:50:27 -0700277 <dependency>
278 <groupId>org.onlab.onos</groupId>
279 <artifactId>onos-of-api</artifactId>
280 <version>${project.version}</version>
281 <classifier>tests</classifier>
282 <scope>test</scope>
283 </dependency>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700284 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700285 <groupId>commons-pool</groupId>
286 <artifactId>commons-pool</artifactId>
287 <version>1.6</version>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700288 </dependency>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700289 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700290 <groupId>io.netty</groupId>
291 <artifactId>netty-common</artifactId>
292 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700293 </dependency>
294 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700295 <groupId>io.netty</groupId>
296 <artifactId>netty-buffer</artifactId>
297 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700298 </dependency>
299 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700300 <groupId>io.netty</groupId>
301 <artifactId>netty-transport</artifactId>
302 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700303 </dependency>
304 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700305 <groupId>io.netty</groupId>
306 <artifactId>netty-handler</artifactId>
307 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700308 </dependency>
309 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700310 <groupId>io.netty</groupId>
311 <artifactId>netty-codec</artifactId>
312 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700313 </dependency>
Madan Jampani824a7c12014-10-21 09:46:15 -0700314 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700315 <groupId>io.netty</groupId>
316 <artifactId>netty-transport-native-epoll</artifactId>
317 <version>${netty4.version}</version>
Madan Jampani824a7c12014-10-21 09:46:15 -0700318 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700319 </dependencies>
320 </dependencyManagement>
321
322 <dependencies>
323 <dependency>
324 <groupId>junit</groupId>
325 <artifactId>junit</artifactId>
326 </dependency>
327 <dependency>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700328 <groupId>org.hamcrest</groupId>
329 <artifactId>hamcrest-core</artifactId>
330 </dependency>
331 <dependency>
332 <groupId>org.hamcrest</groupId>
333 <artifactId>hamcrest-library</artifactId>
334 </dependency>
335 <dependency>
tom0eb04ca2014-08-25 14:34:51 -0700336 <groupId>org.slf4j</groupId>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -0700337 <artifactId>slf4j-api</artifactId>
338 </dependency>
339 <dependency>
340 <groupId>org.slf4j</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700341 <artifactId>slf4j-jdk14</artifactId>
342 </dependency>
343 </dependencies>
tom09419512014-08-15 11:28:43 -0700344
345 <build>
346 <pluginManagement>
347 <plugins>
348 <plugin>
349 <groupId>org.apache.maven.plugins</groupId>
350 <artifactId>maven-compiler-plugin</artifactId>
Yuta HIGUCHIea90aa62014-10-13 15:57:55 -0700351 <!-- TODO: update once following issue is fixed. -->
352 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
353 <version>2.5.1</version>
tom09419512014-08-15 11:28:43 -0700354 <configuration>
355 <source>1.7</source>
356 <target>1.7</target>
357 </configuration>
358 </plugin>
359
360 <plugin>
361 <groupId>org.apache.maven.plugins</groupId>
362 <artifactId>maven-surefire-plugin</artifactId>
363 <version>2.17</version>
tom64888122014-08-27 21:47:46 -0700364 <configuration>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700365 <redirectTestOutputToFile>true
366 </redirectTestOutputToFile>
tom64888122014-08-27 21:47:46 -0700367 <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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700421 <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>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700447 </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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700535 <version>2.10.1</version>
tom0eb04ca2014-08-25 14:34:51 -0700536 <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 Vachuska5d42c6b2014-10-21 23:52:28 -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.*:org.onlab.onos.provider.host.impl:org.onlab.onos.provider.lldp.impl:org.onlab.onos.net.statistic.impl
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 Vachuska5d42c6b2014-10-21 23:52:28 -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:org.onlab.onos.sdnip:org.onlab.onos.sdnip.*:org.onlab.onos.optical:org.onlab.onos.optical.*:org.onlab.onos.metrics.*
tom8bb16062014-09-12 14:47:46 -0700576 </packages>
577 </group>
tom0eb04ca2014-08-25 14:34:51 -0700578 </groups>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700579 <excludePackageNames>org.onlab.thirdparty
580 </excludePackageNames>
tom0eb04ca2014-08-25 14:34:51 -0700581 </configuration>
582 </plugin>
583
584 </plugins>
tom09419512014-08-15 11:28:43 -0700585 </build>
alshabib522d9872014-08-15 10:35:16 -0700586
tom0eb04ca2014-08-25 14:34:51 -0700587 <reporting>
588 <plugins>
589 <plugin>
590 <groupId>org.apache.maven.plugins</groupId>
591 <artifactId>maven-checkstyle-plugin</artifactId>
592 <version>2.12.1</version>
593 <configuration>
594 <configLocation>onos/checkstyle.xml</configLocation>
595 </configuration>
596 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700597
598 <plugin>
599 <groupId>org.apache.maven.plugins</groupId>
600 <artifactId>maven-pmd-plugin</artifactId>
601 <version>3.2</version>
602 <configuration>
603 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700604 </excludes>
605 <rulesets>
606 <ruleset>onos/pmd.xml</ruleset>
607 </rulesets>
608 </configuration>
609 </plugin>
610
tom0eb04ca2014-08-25 14:34:51 -0700611 </plugins>
tom0eb04ca2014-08-25 14:34:51 -0700612 </reporting>
Yuta HIGUCHI920d6a72014-10-22 10:01:03 -0700613 <prerequisites>
614 <maven>3.0.0</maven>
615 </prerequisites>
alshabib522d9872014-08-15 10:35:16 -0700616</project>