alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 2 | <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> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 6 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 7 | <groupId>org.onlab.onos</groupId> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 8 | <artifactId>onos</artifactId> |
| 9 | <packaging>pom</packaging> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 11 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 12 | <description>Open Networking Operating System root project</description> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 13 | |
| 14 | <modules> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 15 | <module>tools/build/conf</module> |
| 16 | <module>utils</module> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 17 | <module>core</module> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 18 | <module>web</module> |
| 19 | <module>cli</module> |
| 20 | <module>providers</module> |
tom | f8b8d67 | 2014-09-17 13:07:23 -0700 | [diff] [blame] | 21 | <module>openflow</module> |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 22 | <module>apps</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 23 | <module>features</module> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 24 | <module>tools/package/branding</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 25 | </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 HIGUCHI | e2efe72 | 2014-09-19 14:37:34 -0700 | [diff] [blame] | 37 | <properties> |
| 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 39 | </properties> |
| 40 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 41 | <dependencyManagement> |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <version>4.11</version> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 49 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 50 | <dependency> |
| 51 | <groupId>org.slf4j</groupId> |
| 52 | <artifactId>slf4j-api</artifactId> |
| 53 | <version>1.7.6</version> |
| 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>org.slf4j</groupId> |
| 59 | <artifactId>slf4j-jdk14</artifactId> |
| 60 | <version>1.7.6</version> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>com.google.guava</groupId> |
| 66 | <artifactId>guava</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 67 | <version>18.0</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 68 | </dependency> |
| 69 | |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>io.netty</groupId> |
| 72 | <artifactId>netty</artifactId> |
| 73 | <version>3.9.0.Final</version> |
| 74 | </dependency> |
| 75 | |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>com.google.guava</groupId> |
| 78 | <artifactId>guava-testlib</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 79 | <version>18.0</version> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>commons-lang</groupId> |
| 85 | <artifactId>commons-lang</artifactId> |
| 86 | <version>2.6</version> |
| 87 | </dependency> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 88 | |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>org.apache.commons</groupId> |
| 91 | <artifactId>commons-lang3</artifactId> |
| 92 | <version>3.3.2</version> |
| 93 | </dependency> |
| 94 | |
Jonathan Hart | 74f9c3b | 2014-09-29 20:03:50 -0700 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.codehaus.jackson</groupId> |
| 97 | <artifactId>jackson-core-asl</artifactId> |
| 98 | <version>1.9.13</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.codehaus.jackson</groupId> |
| 102 | <artifactId>jackson-mapper-asl</artifactId> |
| 103 | <version>1.9.13</version> |
| 104 | </dependency> |
| 105 | |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 106 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 107 | <!-- Web related --> |
| 108 | <dependency> |
| 109 | <groupId>com.sun.jersey</groupId> |
| 110 | <artifactId>jersey-servlet</artifactId> |
| 111 | <version>1.18.1</version> |
| 112 | <scope>provided</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>com.fasterxml.jackson.core</groupId> |
| 116 | <artifactId>jackson-databind</artifactId> |
| 117 | <version>2.4.2</version> |
| 118 | <scope>provided</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>com.fasterxml.jackson.core</groupId> |
| 122 | <artifactId>jackson-annotations</artifactId> |
| 123 | <version>2.4.2</version> |
| 124 | <scope>provided</scope> |
| 125 | </dependency> |
| 126 | |
| 127 | <!-- OSGi related --> |
| 128 | <dependency> |
| 129 | <groupId>org.osgi</groupId> |
| 130 | <artifactId>org.osgi.core</artifactId> |
| 131 | <version>4.3.1</version> |
| 132 | <scope>provided</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.apache.felix</groupId> |
| 136 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 137 | <version>1.9.8</version> |
| 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.apache.karaf.shell</groupId> |
| 142 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 143 | <version>3.0.1</version> |
| 144 | <scope>provided</scope> |
| 145 | </dependency> |
| 146 | |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 147 | <dependency> |
tom | 14dc4d0 | 2014-09-26 12:43:14 -0700 | [diff] [blame] | 148 | <groupId>org.livetribe.slp</groupId> |
| 149 | <artifactId>livetribe-slp</artifactId> |
| 150 | <version>2.2.1</version> |
| 151 | </dependency> |
| 152 | |
| 153 | <dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 154 | <groupId>com.hazelcast</groupId> |
| 155 | <artifactId>hazelcast</artifactId> |
| 156 | <version>3.3</version> |
| 157 | </dependency> |
| 158 | <dependency> |
tom | dc66b38 | 2014-09-22 17:05:47 -0700 | [diff] [blame] | 159 | <groupId>com.eclipsesource.minimal-json</groupId> |
| 160 | <artifactId>minimal-json</artifactId> |
| 161 | <version>0.9.1</version> |
| 162 | </dependency> |
| 163 | <dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 164 | <groupId>com.esotericsoftware.kryo</groupId> |
| 165 | <artifactId>kryo</artifactId> |
| 166 | <version>2.24.0</version> |
| 167 | </dependency> |
| 168 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 169 | <groupId>com.esotericsoftware</groupId> |
| 170 | <artifactId>minlog</artifactId> |
| 171 | <version>1.3.0</version> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.objenesis</groupId> |
| 175 | <artifactId>objenesis</artifactId> |
| 176 | <version>2.1</version> |
| 177 | </dependency> |
| 178 | <dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 179 | <groupId>de.javakaffee</groupId> |
| 180 | <artifactId>kryo-serializers</artifactId> |
| 181 | <version>0.27</version> |
| 182 | </dependency> |
| 183 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 184 | <!-- ONOS related --> |
| 185 | <dependency> |
| 186 | <groupId>org.onlab.onos</groupId> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 187 | <artifactId>onlab-misc</artifactId> |
| 188 | <version>${project.version}</version> |
| 189 | </dependency> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 190 | <dependency> |
| 191 | <groupId>org.onlab.onos</groupId> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 192 | <artifactId>onlab-nio</artifactId> |
| 193 | <version>${project.version}</version> |
| 194 | </dependency> |
| 195 | <dependency> |
| 196 | <groupId>org.onlab.onos</groupId> |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 197 | <artifactId>onlab-osgi</artifactId> |
| 198 | <version>${project.version}</version> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.onlab.onos</groupId> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 202 | <artifactId>onlab-junit</artifactId> |
| 203 | <version>1.0.0-SNAPSHOT</version> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 206 | |
| 207 | <dependency> |
| 208 | <groupId>org.onlab.onos</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 209 | <artifactId>onos-api</artifactId> |
| 210 | <version>${project.version}</version> |
| 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>org.onlab.onos</groupId> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 214 | <artifactId>onos-api</artifactId> |
| 215 | <version>${project.version}</version> |
| 216 | <classifier>tests</classifier> |
| 217 | <scope>test</scope> |
| 218 | </dependency> |
| 219 | |
| 220 | <dependency> |
| 221 | <groupId>org.onlab.onos</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 222 | <artifactId>onos-of-api</artifactId> |
| 223 | <version>${project.version}</version> |
| 224 | </dependency> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 225 | <dependency> |
| 226 | <groupId>org.onlab.onos</groupId> |
| 227 | <artifactId>onos-of-api</artifactId> |
| 228 | <version>${project.version}</version> |
| 229 | <classifier>tests</classifier> |
| 230 | <scope>test</scope> |
| 231 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 232 | </dependencies> |
| 233 | </dependencyManagement> |
| 234 | |
| 235 | <dependencies> |
| 236 | <dependency> |
| 237 | <groupId>junit</groupId> |
| 238 | <artifactId>junit</artifactId> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>org.slf4j</groupId> |
| 242 | <artifactId>slf4j-jdk14</artifactId> |
| 243 | </dependency> |
| 244 | </dependencies> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 245 | |
| 246 | <build> |
| 247 | <pluginManagement> |
| 248 | <plugins> |
| 249 | <plugin> |
| 250 | <groupId>org.apache.maven.plugins</groupId> |
| 251 | <artifactId>maven-compiler-plugin</artifactId> |
| 252 | <version>3.1</version> |
| 253 | <configuration> |
| 254 | <source>1.7</source> |
| 255 | <target>1.7</target> |
| 256 | </configuration> |
| 257 | </plugin> |
| 258 | |
| 259 | <plugin> |
| 260 | <groupId>org.apache.maven.plugins</groupId> |
| 261 | <artifactId>maven-surefire-plugin</artifactId> |
| 262 | <version>2.17</version> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 263 | <configuration> |
| 264 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| 265 | <printSummary>true</printSummary> |
| 266 | </configuration> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 267 | </plugin> |
| 268 | |
| 269 | <plugin> |
| 270 | <groupId>org.apache.maven.plugins</groupId> |
| 271 | <artifactId>maven-jar-plugin</artifactId> |
| 272 | <version>2.3.1</version> |
| 273 | <executions> |
| 274 | <execution> |
| 275 | <phase>package</phase> |
| 276 | <goals> |
| 277 | <goal>test-jar</goal> |
| 278 | </goals> |
| 279 | </execution> |
| 280 | </executions> |
| 281 | </plugin> |
| 282 | |
| 283 | <plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 284 | <groupId>org.apache.maven.plugins</groupId> |
| 285 | <artifactId>maven-resources-plugin</artifactId> |
| 286 | <version>2.6</version> |
| 287 | </plugin> |
| 288 | |
| 289 | <plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 290 | <groupId>org.apache.felix</groupId> |
| 291 | <artifactId>maven-bundle-plugin</artifactId> |
| 292 | <version>2.3.7</version> |
| 293 | <extensions>true</extensions> |
| 294 | </plugin> |
| 295 | |
| 296 | <plugin> |
| 297 | <groupId>org.apache.felix</groupId> |
| 298 | <artifactId>maven-scr-plugin</artifactId> |
| 299 | <version>1.15.0</version> |
| 300 | <executions> |
| 301 | <execution> |
| 302 | <id>generate-scr-srcdescriptor</id> |
| 303 | <goals> |
| 304 | <goal>scr</goal> |
| 305 | </goals> |
| 306 | </execution> |
| 307 | </executions> |
| 308 | <configuration> |
| 309 | <supportedProjectTypes> |
| 310 | <supportedProjectType>bundle</supportedProjectType> |
| 311 | <supportedProjectType>war</supportedProjectType> |
| 312 | </supportedProjectTypes> |
| 313 | </configuration> |
| 314 | </plugin> |
| 315 | |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 316 | <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only --> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 317 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 318 | </pluginManagement> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 319 | |
| 320 | <plugins> |
| 321 | <plugin> |
| 322 | <groupId>org.apache.maven.plugins</groupId> |
tom | e33cc1a | 2014-08-25 21:59:41 -0700 | [diff] [blame] | 323 | <artifactId>maven-jar-plugin</artifactId> |
| 324 | </plugin> |
| 325 | |
| 326 | <plugin> |
| 327 | <groupId>org.apache.maven.plugins</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 328 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 329 | <version>2.12.1</version> |
| 330 | <dependencies> |
| 331 | <dependency> |
| 332 | <groupId>org.onlab.tools</groupId> |
| 333 | <artifactId>onos-build-conf</artifactId> |
| 334 | <version>1.0</version> |
| 335 | </dependency> |
| 336 | </dependencies> |
| 337 | <configuration> |
| 338 | <configLocation>onos/checkstyle.xml</configLocation> |
| 339 | <suppressionsLocation>onos/suppressions.xml |
| 340 | </suppressionsLocation> |
| 341 | <failsOnError>false</failsOnError> |
| 342 | <logViolationsToConsole>true</logViolationsToConsole> |
| 343 | <includeTestSourceDirectory>true |
| 344 | </includeTestSourceDirectory> |
| 345 | </configuration> |
| 346 | <executions> |
| 347 | <execution> |
| 348 | <id>validate-checkstyle</id> |
| 349 | <phase>verify</phase> |
| 350 | <goals> |
| 351 | <goal>check</goal> |
| 352 | </goals> |
| 353 | </execution> |
| 354 | </executions> |
| 355 | </plugin> |
| 356 | |
| 357 | <plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 358 | <groupId>org.apache.maven.plugins</groupId> |
| 359 | <artifactId>maven-pmd-plugin</artifactId> |
| 360 | <version>3.2</version> |
| 361 | <configuration> |
| 362 | <excludes> |
| 363 | <exclude>**/datastore/serializers/**</exclude> |
| 364 | <exclude>**/edu/stanford/**</exclude> |
| 365 | <exclude>**/net/floodlightcontroller/**</exclude> |
| 366 | </excludes> |
| 367 | <rulesets> |
| 368 | <ruleset>onos/pmd.xml</ruleset> |
| 369 | </rulesets> |
| 370 | </configuration> |
| 371 | <executions> |
| 372 | <execution> |
| 373 | <id>validate-pmd</id> |
| 374 | <phase>verify</phase> |
| 375 | <goals> |
| 376 | <!-- Uncomment this goal to make the build fail on pmd errors --> |
| 377 | <!--<goal>check</goal>--> |
| 378 | </goals> |
| 379 | </execution> |
| 380 | </executions> |
| 381 | </plugin> |
| 382 | |
| 383 | <plugin> |
tom | 4f3b18b | 2014-08-28 14:38:47 -0700 | [diff] [blame] | 384 | <groupId>org.jacoco</groupId> |
| 385 | <artifactId>jacoco-maven-plugin</artifactId> |
| 386 | <version>0.7.1.201405082137</version> |
| 387 | <executions> |
| 388 | <execution> |
| 389 | <id>default-prepare-agent</id> |
| 390 | <goals> |
| 391 | <goal>prepare-agent</goal> |
| 392 | </goals> |
| 393 | </execution> |
| 394 | <execution> |
| 395 | <id>default-report</id> |
| 396 | <phase>prepare-package</phase> |
| 397 | <goals> |
| 398 | <goal>report</goal> |
| 399 | </goals> |
| 400 | </execution> |
| 401 | </executions> |
| 402 | </plugin> |
| 403 | |
| 404 | <plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 405 | <groupId>org.apache.maven.plugins</groupId> |
| 406 | <artifactId>maven-javadoc-plugin</artifactId> |
| 407 | <version>2.9.1</version> |
| 408 | <configuration> |
tom | 578ebdc | 2014-09-11 11:12:51 -0700 | [diff] [blame] | 409 | <show>package</show> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 410 | <docfilessubdirs>true</docfilessubdirs> |
| 411 | <doctitle>ONOS Java API</doctitle> |
| 412 | <groups> |
| 413 | <group> |
| 414 | <title>Network Model & Services</title> |
| 415 | <packages> |
tom | 5d4e73c | 2014-09-24 18:38:24 -0700 | [diff] [blame] | 416 | org.onlab.onos:org.onlab.onos.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 417 | </packages> |
| 418 | </group> |
| 419 | <group> |
| 420 | <title>Core Subsystems</title> |
| 421 | <packages> |
tom | 5d4e73c | 2014-09-24 18:38:24 -0700 | [diff] [blame] | 422 | 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.net.trivial.*:org.onlab.onos.net.*.impl:org.onlab.onos.event.impl:org.onlab.onos.store.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 423 | </packages> |
| 424 | </group> |
| 425 | <group> |
| 426 | <title>OpenFlow Providers & Controller |
| 427 | </title> |
| 428 | <packages> |
tom | 9c94c5b | 2014-09-17 13:14:42 -0700 | [diff] [blame] | 429 | org.onlab.onos.provider.of.*:org.onlab.onos.openflow.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 430 | </packages> |
| 431 | </group> |
| 432 | <group> |
| 433 | <title>Utilities</title> |
| 434 | <packages> |
tom | 984d782 | 2014-08-29 12:02:59 -0700 | [diff] [blame] | 435 | org.onlab.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 436 | </packages> |
| 437 | </group> |
| 438 | <group> |
| 439 | <title>GUI, REST & Command-Line</title> |
| 440 | <packages> |
| 441 | org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.* |
| 442 | </packages> |
| 443 | </group> |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 444 | <group> |
| 445 | <title>Sample Applications</title> |
| 446 | <packages> |
tom | 5d4e73c | 2014-09-24 18:38:24 -0700 | [diff] [blame] | 447 | org.onlab.onos.tvue:org.onlab.onos.fwd:org.onlab.onos.foo |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 448 | </packages> |
| 449 | </group> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 450 | </groups> |
| 451 | </configuration> |
| 452 | </plugin> |
| 453 | |
| 454 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 455 | </build> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 456 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 457 | <reporting> |
| 458 | <plugins> |
| 459 | <plugin> |
| 460 | <groupId>org.apache.maven.plugins</groupId> |
| 461 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 462 | <version>2.12.1</version> |
| 463 | <configuration> |
| 464 | <configLocation>onos/checkstyle.xml</configLocation> |
| 465 | </configuration> |
| 466 | </plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 467 | |
| 468 | <plugin> |
| 469 | <groupId>org.apache.maven.plugins</groupId> |
| 470 | <artifactId>maven-pmd-plugin</artifactId> |
| 471 | <version>3.2</version> |
| 472 | <configuration> |
| 473 | <excludes> |
| 474 | <exclude>**/datastore/serializers/**</exclude> |
| 475 | <exclude>**/edu/stanford/**</exclude> |
| 476 | <exclude>**/net/floodlightcontroller/**</exclude> |
| 477 | </excludes> |
| 478 | <rulesets> |
| 479 | <ruleset>onos/pmd.xml</ruleset> |
| 480 | </rulesets> |
| 481 | </configuration> |
| 482 | </plugin> |
| 483 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 484 | </plugins> |
| 485 | |
| 486 | </reporting> |
| 487 | |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 488 | </project> |