HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <prerequisites> |
| 5 | <maven>3.0.4</maven> |
| 6 | </prerequisites> |
| 7 | <groupId>net.onrc.onos</groupId> |
Pankaj Berde | bbd3861 | 2013-06-22 05:59:12 -0700 | [diff] [blame] | 8 | <artifactId>onos</artifactId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 9 | <version>0.1.0</version> |
| 10 | <packaging>jar</packaging> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 11 | <name>ONOS-RAMCloud</name> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 12 | <url>http://onlab.us/</url> |
| 13 | <repositories> |
| 14 | <repository> |
| 15 | <id>central</id> |
| 16 | <name>Maven Central repository</name> |
| 17 | <url>http://repo1.maven.org/maven2</url> |
| 18 | </repository> |
| 19 | <repository> |
| 20 | <id>maven-restlet</id> |
| 21 | <name>Public online Restlet repository</name> |
| 22 | <url>http://maven.restlet.org</url> |
| 23 | </repository> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 24 | </repositories> |
| 25 | <properties> |
| 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -0800 | [diff] [blame] | 27 | <powermock.version>1.5.1</powermock.version> |
Pankaj Berde | 37d6d4d | 2013-12-03 10:12:56 -0800 | [diff] [blame] | 28 | <restlet.version>2.1.4</restlet.version> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 29 | <cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 30 | <findbugs-plugin.version>2.5.3</findbugs-plugin.version> |
| 31 | <findbugs.effort>Max</findbugs.effort> |
| 32 | <findbugs.excludeFilterFile>conf/findbugs/exclude.xml</findbugs.excludeFilterFile> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 33 | <checkstyle-plugin.version>2.12</checkstyle-plugin.version> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 34 | <!-- To publish javadoc to github, |
| 35 | uncomment com.github.github site-maven-plugin and |
| 36 | see https://github.com/OPENNETWORKINGLAB/ONOS/pull/425 |
| 37 | <github.global.server>github</github.global.server> |
| 38 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 39 | </properties> |
| 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 43 | <!-- Note: the checkstyle configuration is also in the reporting section --> |
| 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-checkstyle-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 46 | <version>${checkstyle-plugin.version}</version> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 47 | <configuration> |
| 48 | <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 49 | <suppressionsLocation> |
| 50 | ${basedir}/conf/checkstyle/onos_suppressions.xml |
| 51 | </suppressionsLocation> |
| 52 | <failsOnError>false</failsOnError> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 53 | </configuration> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 54 | <executions> |
| 55 | <execution> |
| 56 | <id>validate-checkstyle</id> |
| 57 | <phase>compile</phase> |
| 58 | <goals> |
| 59 | <!-- Uncomment this goal to make the build fail on Checkstyle errors --> |
| 60 | <!--<goal>check</goal>--> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 64 | </plugin> |
| 65 | <plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-install-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 68 | <version>2.5.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 69 | <executions> |
| 70 | </executions> |
| 71 | </plugin> |
| 72 | <!-- guice maven plugin for dependency injection inside maven --> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.camel</groupId> |
| 75 | <artifactId>guice-maven-plugin</artifactId> |
| 76 | <version>2.11.0</version> |
| 77 | </plugin> |
| 78 | <!-- compile --> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-compiler-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 82 | <version>3.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 83 | <configuration> |
Yuta HIGUCHI | 641d999 | 2013-12-18 16:40:45 -0800 | [diff] [blame] | 84 | <source>1.7</source> |
| 85 | <target>1.7</target> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 86 | <encoding>UTF-8</encoding> |
| 87 | </configuration> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 88 | <executions> |
| 89 | </executions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 90 | </plugin> |
| 91 | <!-- test --> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-surefire-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 95 | <version>2.16</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 96 | <configuration> |
| 97 | <excludes> |
| 98 | <!-- exclude all test cases for now --> |
| 99 | <!-- <exclude>**/storage/tests/StorageTest.java</exclude> --> |
| 100 | <!-- <exclude>**/test/*</exclude> --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 101 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 102 | <exclude>**/test/*</exclude> |
| 103 | <exclude>**/Test*.java</exclude> |
| 104 | <exclude>**/*Test.java</exclude> |
| 105 | <exclude>**/*TestCase.java</exclude> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 106 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 107 | </excludes> |
HIGUCHI Yuta | 71c96dd | 2013-10-20 17:15:56 -0700 | [diff] [blame] | 108 | <argLine>-XX:MaxPermSize=256m</argLine> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 109 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 110 | </configuration> |
| 111 | </plugin> |
| 112 | <!-- exec:java --> |
| 113 | <plugin> |
| 114 | <groupId>org.codehaus.mojo</groupId> |
| 115 | <artifactId>exec-maven-plugin</artifactId> |
| 116 | <version>1.2.1</version> |
| 117 | <configuration> |
HIGUCHI Yuta | 49cf4d2 | 2013-06-17 12:15:17 -0700 | [diff] [blame] | 118 | <mainClass>net.onrc.onos.ofcontroller.core.Main</mainClass> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 119 | </configuration> |
| 120 | <executions> |
| 121 | </executions> |
| 122 | </plugin> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 123 | <!--<plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 124 | <groupId>org.codehaus.mojo</groupId> |
| 125 | <artifactId>build-helper-maven-plugin</artifactId> |
| 126 | <version>1.7</version> |
| 127 | <executions> |
| 128 | <execution> |
| 129 | <id>add-source</id> |
| 130 | <phase>generate-sources</phase> |
| 131 | <goals> |
| 132 | <goal>add-source</goal> |
| 133 | </goals> |
| 134 | <configuration> |
| 135 | <sources> |
| 136 | <source>lib/gen-java</source> |
| 137 | </sources> |
| 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 141 | </plugin>--> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 142 | <plugin> |
| 143 | <groupId>org.apache.maven.plugins</groupId> |
| 144 | <artifactId>maven-javadoc-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 145 | <version>2.9.1</version> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 146 | <configuration> |
| 147 | <charset>UTF-8</charset> |
| 148 | <locale>en</locale> |
| 149 | </configuration> |
| 150 | </plugin> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 151 | <!-- Remove me when we're sure that system test no longer need JaCoCo |
timlindberg | 8b13e70 | 2013-07-17 14:45:50 -0700 | [diff] [blame] | 152 | <plugin> |
| 153 | <groupId>org.jacoco</groupId> |
| 154 | <artifactId>jacoco-maven-plugin</artifactId> |
| 155 | <version>0.6.3.201306030806</version> |
timlindberg | 8b13e70 | 2013-07-17 14:45:50 -0700 | [diff] [blame] | 156 | <executions> |
| 157 | <execution> |
| 158 | <id>jacoco-initialize</id> |
| 159 | <goals> |
| 160 | <goal>prepare-agent</goal> |
| 161 | </goals> |
| 162 | </execution> |
| 163 | <execution> |
| 164 | <id>jacoco-site</id> |
| 165 | <phase>package</phase> |
| 166 | <goals> |
| 167 | <goal>report</goal> |
| 168 | </goals> |
| 169 | </execution> |
| 170 | </executions> |
| 171 | </plugin> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 172 | --> |
Pavlin Radoslavov | a463e46 | 2013-12-13 15:18:50 -0800 | [diff] [blame] | 173 | <!-- |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 174 | <plugin> |
| 175 | <groupId>com.github.github</groupId> |
| 176 | <artifactId>site-maven-plugin</artifactId> |
| 177 | <version>0.8</version> |
| 178 | <configuration> |
| 179 | <message>Creating site for ${project.version}</message> |
| 180 | <dryRun>true</dryRun> |
| 181 | <repositoryName>ONOS</repositoryName> |
| 182 | <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 183 | <path>javadoc/${project.version}/</path> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 184 | </configuration> |
| 185 | <executions> |
| 186 | <execution> |
| 187 | <goals> |
| 188 | <goal>site</goal> |
| 189 | </goals> |
| 190 | <phase>site</phase> |
| 191 | </execution> |
| 192 | </executions> |
| 193 | </plugin> |
Pavlin Radoslavov | a463e46 | 2013-12-13 15:18:50 -0800 | [diff] [blame] | 194 | --> |
Jonathan Hart | 2c61a50 | 2013-10-18 18:12:26 -0700 | [diff] [blame] | 195 | <plugin> |
| 196 | <artifactId>maven-assembly-plugin</artifactId> |
| 197 | <configuration> |
| 198 | <descriptorRefs> |
| 199 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 200 | </descriptorRefs> |
| 201 | </configuration> |
| 202 | </plugin> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 203 | <plugin> |
| 204 | <groupId>org.apache.maven.plugins</groupId> |
| 205 | <artifactId>maven-dependency-plugin</artifactId> |
| 206 | <version>2.8</version> |
| 207 | <executions> |
| 208 | <execution> |
| 209 | <id>build-classpath</id> |
| 210 | <phase>generate-sources</phase> |
| 211 | <goals> |
| 212 | <goal>build-classpath</goal> |
| 213 | </goals> |
| 214 | <configuration> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 215 | <outputFile>${project.basedir}/.javacp</outputFile> |
| 216 | </configuration> |
| 217 | </execution> |
| 218 | </executions> |
| 219 | </plugin> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 220 | <plugin> |
| 221 | <groupId>org.codehaus.mojo</groupId> |
| 222 | <artifactId>cobertura-maven-plugin</artifactId> |
| 223 | <version>${cobertura-maven-plugin.version}</version> |
| 224 | <configuration> |
| 225 | <instrumentation> |
| 226 | <ignores> |
| 227 | <ignore>org.slf4j.*</ignore> |
| 228 | <ignore>com.tinkerpop.*</ignore> |
| 229 | </ignores> |
| 230 | <excludes> |
| 231 | <exclude>org/openflow/**/*.class</exclude> |
| 232 | <exclude>net/floodlightcontroller/**/web/**/*.class</exclude> |
| 233 | </excludes> |
| 234 | </instrumentation> |
| 235 | </configuration> |
| 236 | <executions> |
| 237 | <execution> |
| 238 | <goals> |
| 239 | <goal>clean</goal> |
| 240 | </goals> |
| 241 | </execution> |
| 242 | </executions> |
| 243 | </plugin> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 244 | <!-- Note: the findbugs configuration is also in the reporting section --> |
| 245 | <plugin> |
| 246 | <groupId>org.codehaus.mojo</groupId> |
| 247 | <artifactId>findbugs-maven-plugin</artifactId> |
| 248 | <version>${findbugs-plugin.version}</version> |
| 249 | <configuration> |
| 250 | <effort>${findbugs.effort}</effort> |
| 251 | <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile> |
| 252 | </configuration> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 253 | <executions> |
| 254 | <execution> |
| 255 | <id>validate-findbugs</id> |
| 256 | <phase>compile</phase> |
| 257 | <goals> |
| 258 | <!-- Uncomment this goal to make the build fail on findbugs errors --> |
| 259 | <!--<goal>check</goal>--> |
| 260 | </goals> |
| 261 | </execution> |
| 262 | </executions> |
| 263 | </plugin> |
| 264 | <plugin> |
| 265 | <groupId>org.apache.maven.plugins</groupId> |
| 266 | <artifactId>maven-pmd-plugin</artifactId> |
| 267 | <version>3.1</version> |
| 268 | <configuration> |
| 269 | <excludes> |
| 270 | <exclude>**/com/tinkerpop/**</exclude> |
| 271 | <exclude>**/edu/stanford/**</exclude> |
| 272 | <exclude>**/net/floodlightcontroller/**</exclude> |
| 273 | <exclude>**/org/openflow/**</exclude> |
| 274 | </excludes> |
| 275 | <rulesets> |
| 276 | <ruleset>${basedir}/conf/pmd/onos_ruleset.xml</ruleset> |
| 277 | </rulesets> |
| 278 | </configuration> |
| 279 | <executions> |
| 280 | <execution> |
| 281 | <id>validate-pmd</id> |
| 282 | <phase>compile</phase> |
| 283 | <goals> |
| 284 | <!-- Uncomment this goal to make the build fail on pmd errors --> |
| 285 | <!--<goal>check</goal>--> |
| 286 | </goals> |
| 287 | </execution> |
| 288 | </executions> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 289 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 290 | </plugins> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 291 | <pluginManagement> |
| 292 | <plugins> |
| 293 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 294 | only. It has no influence on the Maven build itself. --> |
| 295 | <plugin> |
| 296 | <groupId>org.eclipse.m2e</groupId> |
| 297 | <artifactId>lifecycle-mapping</artifactId> |
| 298 | <version>1.0.0</version> |
| 299 | <configuration> |
| 300 | <lifecycleMappingMetadata> |
| 301 | <pluginExecutions> |
| 302 | <pluginExecution> |
| 303 | <pluginExecutionFilter> |
| 304 | <groupId> |
| 305 | org.apache.maven.plugins |
| 306 | </groupId> |
| 307 | <artifactId> |
| 308 | maven-dependency-plugin |
| 309 | </artifactId> |
| 310 | <versionRange>[2.8,)</versionRange> |
| 311 | <goals> |
| 312 | <goal>build-classpath</goal> |
| 313 | </goals> |
| 314 | </pluginExecutionFilter> |
| 315 | <action> |
| 316 | <ignore></ignore> |
| 317 | </action> |
| 318 | </pluginExecution> |
| 319 | </pluginExecutions> |
| 320 | </lifecycleMappingMetadata> |
| 321 | </configuration> |
| 322 | </plugin> |
| 323 | </plugins> |
| 324 | </pluginManagement> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 325 | </build> |
| 326 | <!-- for getting visualization reporting --> |
| 327 | <reporting> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 328 | <excludeDefaults>true</excludeDefaults> |
| 329 | <outputDirectory>${project.build.directory}/site</outputDirectory> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 330 | <plugins> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 331 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 332 | <plugin> |
| 333 | <groupId>org.apache.camel</groupId> |
| 334 | <artifactId>guice-maven-plugin</artifactId> |
| 335 | <version>2.11.0</version> |
| 336 | </plugin> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 337 | --> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 338 | <plugin> |
| 339 | <groupId>org.apache.maven.plugins</groupId> |
| 340 | <artifactId>maven-project-info-reports-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 341 | <version>2.7</version> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 342 | <configuration> |
| 343 | <dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
| 344 | <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
| 345 | </configuration> |
| 346 | <reportSets> |
| 347 | <reportSet> |
| 348 | <reports> |
| 349 | <report>dependencies</report> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 350 | <!--report>maven-emma-plugin</report--> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 351 | <report>scm</report> |
| 352 | </reports> |
| 353 | </reportSet> |
| 354 | </reportSets> |
| 355 | </plugin> |
| 356 | <plugin> |
| 357 | <groupId>org.apache.maven.plugins</groupId> |
| 358 | <artifactId>maven-javadoc-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 359 | <version>2.9.1</version> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 360 | <configuration> |
| 361 | <charset>UTF-8</charset> |
| 362 | <locale>en</locale> |
| 363 | </configuration> |
| 364 | </plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 365 | <plugin> |
| 366 | <!-- Note: the checkstyle configuration is also in the build section --> |
| 367 | <groupId>org.apache.maven.plugins</groupId> |
| 368 | <artifactId>maven-checkstyle-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 369 | <version>${checkstyle-plugin.version}</version> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 370 | <configuration> |
| 371 | <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 372 | <!-- |
| 373 | Note: Exclusion definition exists in multiple places. |
| 374 | - In file ${findbugs.excludeFilterFile} defined at top of pom.xml |
| 375 | - maven-checkstyle-plugin configuration in pom.xml |
| 376 | - maven-pmd-plugin configuration in pom.xml |
| 377 | --> |
| 378 | <excludes>**/RCProtos.java,**/RamCloudGraphProtos.java</excludes> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 379 | <suppressionsLocation> |
| 380 | ${basedir}/conf/checkstyle/onos_suppressions.xml |
| 381 | </suppressionsLocation> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 382 | </configuration> |
| 383 | <reportSets> |
| 384 | <reportSet> |
| 385 | <reports> |
| 386 | <report>checkstyle</report> |
| 387 | </reports> |
| 388 | </reportSet> |
| 389 | </reportSets> |
| 390 | </plugin> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 391 | <!-- Note: the findbugs configuration is also in the build section --> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 392 | <plugin> |
Ray Milkey | 8d3a2f0 | 2014-03-10 18:13:35 -0700 | [diff] [blame] | 393 | <groupId>org.codehaus.mojo</groupId> |
| 394 | <artifactId>findbugs-maven-plugin</artifactId> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 395 | <version>${findbugs-plugin.version}</version> |
Ray Milkey | 8d3a2f0 | 2014-03-10 18:13:35 -0700 | [diff] [blame] | 396 | <configuration> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 397 | <effort>${findbugs.effort}</effort> |
| 398 | <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile> |
Ray Milkey | 8d3a2f0 | 2014-03-10 18:13:35 -0700 | [diff] [blame] | 399 | <reportPlugins> |
| 400 | <plugin> |
| 401 | <groupId>org.codehaus.mojo</groupId> |
| 402 | <artifactId>findbugs-maven-plugin</artifactId> |
| 403 | </plugin> |
| 404 | </reportPlugins> |
| 405 | </configuration> |
| 406 | </plugin> |
| 407 | <plugin> |
| 408 | <groupId>org.apache.maven.plugins</groupId> |
| 409 | <artifactId>maven-pmd-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 410 | <version>3.1</version> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 411 | <configuration> |
| 412 | <!-- |
| 413 | Note: Exclusion definition exists in multiple places. |
| 414 | - In file ${findbugs.excludeFilterFile} defined at top of pom.xml |
| 415 | - maven-checkstyle-plugin configuration in pom.xml |
| 416 | - maven-pmd-plugin configuration in pom.xml |
| 417 | --> |
| 418 | <excludes> |
| 419 | <exclude>**/RCProtos.java</exclude> |
| 420 | <exclude>**/RamCloudGraphProtos.java</exclude> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 421 | <exclude>**/com/tinkerpop/**</exclude> |
| 422 | <exclude>**/edu/stanford/**</exclude> |
| 423 | <exclude>**/net/floodlightcontroller/**</exclude> |
| 424 | <exclude>**/org/openflow/**</exclude> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 425 | </excludes> |
Ray Milkey | 70d91cc | 2014-03-18 15:22:27 -0700 | [diff] [blame^] | 426 | <rulesets> |
| 427 | <ruleset>${basedir}/conf/pmd/onos_ruleset.xml</ruleset> |
| 428 | </rulesets> |
Yuta HIGUCHI | 6cab638 | 2014-03-17 13:47:38 -0700 | [diff] [blame] | 429 | </configuration> |
Ray Milkey | 8d3a2f0 | 2014-03-10 18:13:35 -0700 | [diff] [blame] | 430 | </plugin> |
| 431 | <plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 432 | <groupId>org.apache.maven.plugins</groupId> |
| 433 | <artifactId>maven-jxr-plugin</artifactId> |
Yuta HIGUCHI | 01c5ed9 | 2014-03-18 11:08:22 -0700 | [diff] [blame] | 434 | <version>2.4</version> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 435 | </plugin> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 436 | <plugin> |
| 437 | <groupId>org.codehaus.mojo</groupId> |
| 438 | <artifactId>cobertura-maven-plugin</artifactId> |
| 439 | <version>${cobertura-maven-plugin.version}</version> |
| 440 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 441 | </plugins> |
| 442 | </reporting> |
| 443 | <dependencies> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 444 | <!-- ONOS's direct dependencies --> |
Yuta HIGUCHI | 5548a49 | 2013-10-24 00:39:23 -0700 | [diff] [blame] | 445 | <dependency> |
| 446 | <groupId>com.esotericsoftware.kryo</groupId> |
| 447 | <artifactId>kryo</artifactId> |
| 448 | <version>2.22</version> |
| 449 | </dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 450 | <dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 451 | <!-- remove me after BluePrint clean up --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 452 | <groupId>com.thinkaurelius.titan</groupId> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 453 | <artifactId>titan-core</artifactId> |
Jonathan Hart | f371e98 | 2014-01-15 10:02:50 -0800 | [diff] [blame] | 454 | <version>0.4.2</version> |
Jonathan Hart | 2818249 | 2013-06-13 15:22:03 +1200 | [diff] [blame] | 455 | <exclusions> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 456 | <exclusion> |
Jonathan Hart | 2818249 | 2013-06-13 15:22:03 +1200 | [diff] [blame] | 457 | <groupId>org.slf4j</groupId> |
| 458 | <artifactId>slf4j-log4j12</artifactId> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 459 | </exclusion> |
Jonathan Hart | 2818249 | 2013-06-13 15:22:03 +1200 | [diff] [blame] | 460 | </exclusions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 461 | </dependency> |
| 462 | <dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 463 | <!-- remove me after BluePrint clean up --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 464 | <groupId>com.tinkerpop</groupId> |
| 465 | <artifactId>frames</artifactId> |
Jonathan Hart | f371e98 | 2014-01-15 10:02:50 -0800 | [diff] [blame] | 466 | <version>2.4.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 467 | </dependency> |
| 468 | <dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 469 | <!-- remove me after BluePrint clean up --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 470 | <groupId>com.tinkerpop.blueprints</groupId> |
| 471 | <artifactId>blueprints-core</artifactId> |
Yuta HIGUCHI | cc8b101 | 2014-01-24 09:14:39 -0800 | [diff] [blame] | 472 | <version>2.4.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 473 | </dependency> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -0800 | [diff] [blame] | 474 | <dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 475 | <!-- remove me after BluePrint clean up --> |
| 476 | <groupId>com.tinkerpop.rexster</groupId> |
| 477 | <artifactId>rexster-core</artifactId> |
| 478 | <version>2.4.0</version> |
yoshi | 28bac13 | 2014-01-22 11:00:17 -0800 | [diff] [blame] | 479 | </dependency> |
| 480 | <dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 481 | <groupId>com.google.protobuf</groupId> |
| 482 | <artifactId>protobuf-java</artifactId> |
| 483 | <version>2.5.0</version> |
yoshi | 28bac13 | 2014-01-22 11:00:17 -0800 | [diff] [blame] | 484 | </dependency> |
| 485 | <dependency> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -0800 | [diff] [blame] | 486 | <groupId>com.hazelcast</groupId> |
| 487 | <artifactId>hazelcast</artifactId> |
| 488 | <version>3.0.2</version> |
| 489 | </dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 490 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 491 | <groupId>net.sf.json-lib</groupId> |
| 492 | <artifactId>json-lib</artifactId> |
| 493 | <version>2.4</version> |
| 494 | <classifier>jdk15</classifier> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 495 | </dependency> |
| 496 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 497 | <groupId>org.restlet.jse</groupId> |
| 498 | <artifactId>org.restlet</artifactId> |
| 499 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 500 | </dependency> |
| 501 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 502 | <groupId>org.restlet.jse</groupId> |
| 503 | <artifactId>org.restlet.ext.slf4j</artifactId> |
| 504 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 505 | </dependency> |
| 506 | <dependency> |
| 507 | <groupId>org.codehaus.jackson</groupId> |
| 508 | <artifactId>jackson-core-asl</artifactId> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 509 | <version>1.9.13</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 510 | </dependency> |
| 511 | <dependency> |
| 512 | <groupId>org.codehaus.jackson</groupId> |
| 513 | <artifactId>jackson-mapper-asl</artifactId> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 514 | <version>1.9.13</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 515 | </dependency> |
| 516 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 517 | <groupId>ch.qos.logback</groupId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 518 | <artifactId>logback-classic</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 519 | <version>1.0.13</version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 520 | <scope>runtime</scope> |
| 521 | </dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 522 | <dependency> |
| 523 | <groupId>commons-configuration</groupId> |
| 524 | <artifactId>commons-configuration</artifactId> |
| 525 | <version>1.6</version> |
| 526 | </dependency> |
| 527 | <dependency> |
| 528 | <groupId>com.google.guava</groupId> |
| 529 | <artifactId>guava</artifactId> |
| 530 | <version>14.0.1</version> |
| 531 | </dependency> |
| 532 | <dependency> |
| 533 | <!-- Used in net.onrc.onos.ofcontroller.bgproute.RestClient.get(String), but not sure if it is really required --> |
| 534 | <groupId>commons-httpclient</groupId> |
| 535 | <artifactId>commons-httpclient</artifactId> |
| 536 | <version>3.1</version> |
| 537 | </dependency> |
| 538 | <dependency> |
| 539 | <groupId>org.apache.zookeeper</groupId> |
| 540 | <artifactId>zookeeper</artifactId> |
| 541 | <version>3.4.5</version> |
| 542 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 543 | <!-- Floodlight's dependencies --> |
| 544 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 545 | <groupId>org.slf4j</groupId> |
| 546 | <artifactId>slf4j-api</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 547 | <version>1.7.5</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 548 | </dependency> |
| 549 | <dependency> |
| 550 | <groupId>org.restlet.jse</groupId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 551 | <artifactId>org.restlet.ext.jackson</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 552 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 553 | </dependency> |
| 554 | <dependency> |
| 555 | <groupId>org.restlet.jse</groupId> |
| 556 | <artifactId>org.restlet.ext.simple</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 557 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 558 | </dependency> |
| 559 | <dependency> |
| 560 | <groupId>org.simpleframework</groupId> |
| 561 | <artifactId>simple</artifactId> |
| 562 | <version>4.1.21</version> |
| 563 | </dependency> |
| 564 | <dependency> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 565 | <groupId>io.netty</groupId> |
| 566 | <artifactId>netty-all</artifactId> |
| 567 | <version>4.0.8.Final</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 568 | </dependency> |
| 569 | <dependency> |
| 570 | <groupId>args4j</groupId> |
| 571 | <artifactId>args4j</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 572 | <version>2.0.25</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 573 | </dependency> |
| 574 | <dependency> |
| 575 | <groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
| 576 | <artifactId>concurrentlinkedhashmap-lru</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 577 | <version>1.4</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 578 | </dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 579 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 580 | <groupId>com.google.inject</groupId> |
| 581 | <artifactId>guice</artifactId> |
| 582 | <version>3.0</version> |
| 583 | </dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 584 | <dependency> |
| 585 | <!-- dependency to old version of netty? --> |
| 586 | <groupId>org.jboss.netty</groupId> |
| 587 | <artifactId>netty</artifactId> |
| 588 | <version>3.2.7.Final</version> |
| 589 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 590 | <!-- Dependency for libraries used for testing --> |
| 591 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 592 | <groupId>junit</groupId> |
| 593 | <artifactId>junit</artifactId> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 594 | <version>4.11</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 595 | <scope>test</scope> |
| 596 | </dependency> |
| 597 | <dependency> |
Ray Milkey | 6688cd8 | 2014-03-11 16:40:46 -0700 | [diff] [blame] | 598 | <groupId>org.hamcrest</groupId> |
| 599 | <artifactId>hamcrest-core</artifactId> |
| 600 | <version>1.3</version> |
| 601 | <scope>test</scope> |
| 602 | </dependency> |
| 603 | <dependency> |
| 604 | <groupId>org.hamcrest</groupId> |
| 605 | <artifactId>hamcrest-library</artifactId> |
| 606 | <version>1.3</version> |
| 607 | <scope>test</scope> |
| 608 | </dependency> |
| 609 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 610 | <groupId>org.easymock</groupId> |
| 611 | <artifactId>easymock</artifactId> |
yoshi | f5a6a50 | 2013-11-25 09:30:35 -0800 | [diff] [blame] | 612 | <version>3.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 613 | <scope>test</scope> |
| 614 | </dependency> |
| 615 | <dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 616 | <groupId>org.powermock</groupId> |
| 617 | <artifactId>powermock-module-junit4</artifactId> |
| 618 | <version>${powermock.version}</version> |
| 619 | <scope>test</scope> |
| 620 | </dependency> |
| 621 | <dependency> |
| 622 | <groupId>org.powermock</groupId> |
| 623 | <artifactId>powermock-api-easymock</artifactId> |
| 624 | <version>${powermock.version}</version> |
| 625 | <scope>test</scope> |
| 626 | </dependency> |
Yuta HIGUCHI | 824552a | 2014-03-07 13:01:06 -0800 | [diff] [blame] | 627 | <dependency> |
| 628 | <groupId>commons-io</groupId> |
| 629 | <artifactId>commons-io</artifactId> |
| 630 | <version>2.1</version> |
| 631 | <scope>test</scope> |
| 632 | </dependency> |
Jonathan Hart | 116b1fe | 2014-03-14 18:53:47 -0700 | [diff] [blame] | 633 | <dependency> |
| 634 | <groupId>org.apache.curator</groupId> |
| 635 | <artifactId>curator-framework</artifactId> |
| 636 | <version>2.4.1</version> |
| 637 | </dependency> |
| 638 | <dependency> |
| 639 | <groupId>org.apache.curator</groupId> |
| 640 | <artifactId>curator-client</artifactId> |
| 641 | <version>2.4.1</version> |
| 642 | </dependency> |
| 643 | <dependency> |
| 644 | <groupId>org.apache.curator</groupId> |
| 645 | <artifactId>curator-recipes</artifactId> |
| 646 | <version>2.4.1</version> |
| 647 | </dependency> |
| 648 | <dependency> |
| 649 | <groupId>org.apache.curator</groupId> |
| 650 | <artifactId>curator-x-discovery</artifactId> |
| 651 | <version>2.4.1</version> |
| 652 | </dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 653 | </dependencies> |
Yuta HIGUCHI | 889958b | 2014-03-12 12:05:47 -0700 | [diff] [blame] | 654 | <profiles> |
| 655 | <!-- Jenkins by default defines a property BUILD_NUMBER which is used to |
| 656 | enable the profile. --> |
| 657 | <profile> |
| 658 | <id>jenkins</id> |
| 659 | <activation> |
| 660 | <property> |
| 661 | <name>env.BUILD_NUMBER</name> |
| 662 | </property> |
| 663 | </activation> |
| 664 | <build> |
| 665 | <plugins> |
| 666 | <plugin> |
| 667 | <groupId>org.codehaus.mojo</groupId> |
| 668 | <artifactId>cobertura-maven-plugin</artifactId> |
| 669 | <version>${cobertura-maven-plugin.version}</version> |
| 670 | <configuration> |
| 671 | <formats> |
| 672 | <format>xml</format> |
| 673 | </formats> |
| 674 | </configuration> |
| 675 | <executions> |
| 676 | <execution> |
| 677 | <phase>package</phase> |
| 678 | <goals> |
| 679 | <goal>cobertura</goal> |
| 680 | </goals> |
| 681 | </execution> |
| 682 | </executions> |
| 683 | </plugin> |
| 684 | </plugins> |
| 685 | </build> |
| 686 | </profile> |
| 687 | </profiles> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 688 | </project> |