blob: cef3b79e88f0eba4f217fcfdfb5a1541b2b9af53 [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
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -070092 <dependency>
Madan Jampania185d862014-09-30 11:32:31 -070093 <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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700106 <groupId>com.googlecode.concurrent-trees</groupId>
107 <artifactId>concurrent-trees</artifactId>
108 <version>2.4.0</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700109 </dependency>
110
111 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700112 <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
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700194 <groupId>com.hazelcast</groupId>
195 <artifactId>hazelcast</artifactId>
196 <version>3.3</version>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -0700197 </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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700273 <groupId>org.onlab.onos</groupId>
274 <artifactId>onlab-thirdparty</artifactId>
275 <version>${project.version}</version>
Jonathan Hart335ef462014-10-16 08:20:46 -0700276 </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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700286 <groupId>commons-pool</groupId>
287 <artifactId>commons-pool</artifactId>
288 <version>1.6</version>
Yuta HIGUCHI707a7e62014-10-02 16:35:49 -0700289 </dependency>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700290 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700291 <groupId>io.netty</groupId>
292 <artifactId>netty-common</artifactId>
293 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700294 </dependency>
295 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700296 <groupId>io.netty</groupId>
297 <artifactId>netty-buffer</artifactId>
298 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700299 </dependency>
300 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700301 <groupId>io.netty</groupId>
302 <artifactId>netty-transport</artifactId>
303 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700304 </dependency>
305 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700306 <groupId>io.netty</groupId>
307 <artifactId>netty-handler</artifactId>
308 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700309 </dependency>
310 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700311 <groupId>io.netty</groupId>
312 <artifactId>netty-codec</artifactId>
313 <version>${netty4.version}</version>
Yuta HIGUCHIceff7b02014-10-20 18:32:25 -0700314 </dependency>
Madan Jampani824a7c12014-10-21 09:46:15 -0700315 <dependency>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700316 <groupId>io.netty</groupId>
317 <artifactId>netty-transport-native-epoll</artifactId>
318 <version>${netty4.version}</version>
Madan Jampani824a7c12014-10-21 09:46:15 -0700319 </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>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700366 <redirectTestOutputToFile>true
367 </redirectTestOutputToFile>
tom64888122014-08-27 21:47:46 -0700368 <printSummary>true</printSummary>
369 </configuration>
tom09419512014-08-15 11:28:43 -0700370 </plugin>
371
372 <plugin>
373 <groupId>org.apache.maven.plugins</groupId>
374 <artifactId>maven-jar-plugin</artifactId>
375 <version>2.3.1</version>
376 <executions>
377 <execution>
378 <phase>package</phase>
379 <goals>
380 <goal>test-jar</goal>
381 </goals>
382 </execution>
383 </executions>
384 </plugin>
385
386 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700387 <groupId>org.apache.maven.plugins</groupId>
388 <artifactId>maven-resources-plugin</artifactId>
389 <version>2.6</version>
390 </plugin>
391
392 <plugin>
tom09419512014-08-15 11:28:43 -0700393 <groupId>org.apache.felix</groupId>
394 <artifactId>maven-bundle-plugin</artifactId>
395 <version>2.3.7</version>
396 <extensions>true</extensions>
397 </plugin>
398
399 <plugin>
400 <groupId>org.apache.felix</groupId>
401 <artifactId>maven-scr-plugin</artifactId>
402 <version>1.15.0</version>
403 <executions>
404 <execution>
405 <id>generate-scr-srcdescriptor</id>
406 <goals>
407 <goal>scr</goal>
408 </goals>
409 </execution>
410 </executions>
411 <configuration>
412 <supportedProjectTypes>
413 <supportedProjectType>bundle</supportedProjectType>
414 <supportedProjectType>war</supportedProjectType>
415 </supportedProjectTypes>
416 </configuration>
417 </plugin>
418
tom09419512014-08-15 11:28:43 -0700419 <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only -->
Brian O'Connorf3d06162014-10-02 15:54:12 -0700420 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
421 <plugin>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700422 <groupId>org.eclipse.m2e</groupId>
423 <artifactId>lifecycle-mapping</artifactId>
424 <version>1.0.0</version>
425 <configuration>
426 <lifecycleMappingMetadata>
427 <pluginExecutions>
428 <pluginExecution>
429 <pluginExecutionFilter>
430 <groupId>org.jacoco</groupId>
431 <artifactId>
432 jacoco-maven-plugin
433 </artifactId>
434 <versionRange>
435 [0.7.1.201405082137,)
436 </versionRange>
437 <goals>
438 <goal>prepare-agent</goal>
439 </goals>
440 </pluginExecutionFilter>
441 <action>
442 <ignore></ignore>
443 </action>
444 </pluginExecution>
445 </pluginExecutions>
446 </lifecycleMappingMetadata>
447 </configuration>
Brian O'Connorf3d06162014-10-02 15:54:12 -0700448 </plugin>
tom09419512014-08-15 11:28:43 -0700449 </plugins>
tom09419512014-08-15 11:28:43 -0700450 </pluginManagement>
tom0eb04ca2014-08-25 14:34:51 -0700451
452 <plugins>
453 <plugin>
454 <groupId>org.apache.maven.plugins</groupId>
tome33cc1a2014-08-25 21:59:41 -0700455 <artifactId>maven-jar-plugin</artifactId>
456 </plugin>
457
458 <plugin>
459 <groupId>org.apache.maven.plugins</groupId>
tom0eb04ca2014-08-25 14:34:51 -0700460 <artifactId>maven-checkstyle-plugin</artifactId>
Yuta HIGUCHIee0ae6c2014-10-18 18:11:57 -0700461 <version>2.13</version>
tom0eb04ca2014-08-25 14:34:51 -0700462 <dependencies>
463 <dependency>
464 <groupId>org.onlab.tools</groupId>
465 <artifactId>onos-build-conf</artifactId>
466 <version>1.0</version>
467 </dependency>
468 </dependencies>
469 <configuration>
470 <configLocation>onos/checkstyle.xml</configLocation>
471 <suppressionsLocation>onos/suppressions.xml
472 </suppressionsLocation>
473 <failsOnError>false</failsOnError>
474 <logViolationsToConsole>true</logViolationsToConsole>
475 <includeTestSourceDirectory>true
476 </includeTestSourceDirectory>
477 </configuration>
478 <executions>
479 <execution>
480 <id>validate-checkstyle</id>
481 <phase>verify</phase>
482 <goals>
483 <goal>check</goal>
484 </goals>
485 </execution>
486 </executions>
487 </plugin>
488
489 <plugin>
tom50a76dd2014-09-02 15:18:35 -0700490 <groupId>org.apache.maven.plugins</groupId>
491 <artifactId>maven-pmd-plugin</artifactId>
492 <version>3.2</version>
493 <configuration>
494 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700495 </excludes>
496 <rulesets>
497 <ruleset>onos/pmd.xml</ruleset>
498 </rulesets>
499 </configuration>
500 <executions>
501 <execution>
502 <id>validate-pmd</id>
503 <phase>verify</phase>
504 <goals>
505 <!-- Uncomment this goal to make the build fail on pmd errors -->
506 <!--<goal>check</goal>-->
507 </goals>
508 </execution>
509 </executions>
510 </plugin>
511
512 <plugin>
tom4f3b18b2014-08-28 14:38:47 -0700513 <groupId>org.jacoco</groupId>
514 <artifactId>jacoco-maven-plugin</artifactId>
515 <version>0.7.1.201405082137</version>
516 <executions>
517 <execution>
518 <id>default-prepare-agent</id>
519 <goals>
520 <goal>prepare-agent</goal>
521 </goals>
522 </execution>
523 <execution>
524 <id>default-report</id>
525 <phase>prepare-package</phase>
526 <goals>
527 <goal>report</goal>
528 </goals>
529 </execution>
530 </executions>
531 </plugin>
532
533 <plugin>
tom0eb04ca2014-08-25 14:34:51 -0700534 <groupId>org.apache.maven.plugins</groupId>
535 <artifactId>maven-javadoc-plugin</artifactId>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700536 <version>2.10.1</version>
tom0eb04ca2014-08-25 14:34:51 -0700537 <configuration>
tom578ebdc2014-09-11 11:12:51 -0700538 <show>package</show>
tom0eb04ca2014-08-25 14:34:51 -0700539 <docfilessubdirs>true</docfilessubdirs>
540 <doctitle>ONOS Java API</doctitle>
541 <groups>
542 <group>
543 <title>Network Model &amp; Services</title>
544 <packages>
tom5d4e73c2014-09-24 18:38:24 -0700545 org.onlab.onos:org.onlab.onos.*
tom0eb04ca2014-08-25 14:34:51 -0700546 </packages>
547 </group>
548 <group>
549 <title>Core Subsystems</title>
550 <packages>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700551 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 -0700552 </packages>
553 </group>
554 <group>
555 <title>OpenFlow Providers &amp; Controller
556 </title>
557 <packages>
tom9c94c5b2014-09-17 13:14:42 -0700558 org.onlab.onos.provider.of.*:org.onlab.onos.openflow.*
tom0eb04ca2014-08-25 14:34:51 -0700559 </packages>
560 </group>
561 <group>
562 <title>Utilities</title>
563 <packages>
tom984d7822014-08-29 12:02:59 -0700564 org.onlab.*
tom0eb04ca2014-08-25 14:34:51 -0700565 </packages>
566 </group>
567 <group>
568 <title>GUI, REST &amp; Command-Line</title>
569 <packages>
570 org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.*
571 </packages>
572 </group>
tom8bb16062014-09-12 14:47:46 -0700573 <group>
574 <title>Sample Applications</title>
575 <packages>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700576 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 -0700577 </packages>
578 </group>
tom0eb04ca2014-08-25 14:34:51 -0700579 </groups>
Thomas Vachuska5d42c6b2014-10-21 23:52:28 -0700580 <excludePackageNames>org.onlab.thirdparty
581 </excludePackageNames>
tom0eb04ca2014-08-25 14:34:51 -0700582 </configuration>
583 </plugin>
584
585 </plugins>
tom09419512014-08-15 11:28:43 -0700586 </build>
alshabib522d9872014-08-15 10:35:16 -0700587
tom0eb04ca2014-08-25 14:34:51 -0700588 <reporting>
589 <plugins>
590 <plugin>
591 <groupId>org.apache.maven.plugins</groupId>
592 <artifactId>maven-checkstyle-plugin</artifactId>
593 <version>2.12.1</version>
594 <configuration>
595 <configLocation>onos/checkstyle.xml</configLocation>
596 </configuration>
597 </plugin>
tom50a76dd2014-09-02 15:18:35 -0700598
599 <plugin>
600 <groupId>org.apache.maven.plugins</groupId>
601 <artifactId>maven-pmd-plugin</artifactId>
602 <version>3.2</version>
603 <configuration>
604 <excludes>
tom50a76dd2014-09-02 15:18:35 -0700605 </excludes>
606 <rulesets>
607 <ruleset>onos/pmd.xml</ruleset>
608 </rulesets>
609 </configuration>
610 </plugin>
611
tom0eb04ca2014-08-25 14:34:51 -0700612 </plugins>
tom0eb04ca2014-08-25 14:34:51 -0700613 </reporting>
Yuta HIGUCHI920d6a72014-10-22 10:01:03 -0700614 <prerequisites>
615 <maven>3.0.0</maven>
616 </prerequisites>
alshabib522d9872014-08-15 10:35:16 -0700617</project>