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