vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ! Copyright 2009-2013 by The Regents of the University of California |
| 4 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ! you may not use this file except in compliance with the License. |
| 6 | ! you may obtain a copy of the License from |
| 7 | ! |
| 8 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ! |
| 10 | ! Unless required by applicable law or agreed to in writing, software |
| 11 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ! See the License for the specific language governing permissions and |
| 14 | ! limitations under the License. |
| 15 | !--> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 16 | <project |
| 17 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <groupId>edu.uci.ics.asterix</groupId> |
| 22 | <artifactId>asterix</artifactId> |
| 23 | <version>0.8.7-SNAPSHOT</version> |
| 24 | <packaging>pom</packaging> |
| 25 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | <licenses> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame^] | 27 | <license> |
| 28 | <name>Apache License, Version 2.0</name> |
| 29 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 30 | <distribution>repo</distribution> |
| 31 | <comments>A business-friendly OSS license</comments> |
| 32 | </license> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 33 | </licenses> |
| 34 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <jvm.extraargs /> |
| 38 | <runSlowAQLTests>false</runSlowAQLTests> |
Chris Hillery | b5c85ac | 2014-02-21 02:33:37 -0800 | [diff] [blame] | 39 | |
| 40 | <!-- Definition of tests in various categories which may be excluded --> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 41 | <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests> |
| 42 | <metadata.tests>**/metadata/*Test.java</metadata.tests> |
| 43 | <execution.tests>**/ExecutionTest.java</execution.tests> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame^] | 44 | <repeated.tests>**/ExecutionTest.java</repeated.tests> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 45 | <invalid.tests>**/DmlTest.java</invalid.tests> |
| 46 | <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame^] | 47 | <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 48 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 49 | <algebricks.version>0.2.16-SNAPSHOT</algebricks.version> |
| 50 | <hyracks.version>0.2.16-SNAPSHOT</hyracks.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 51 | <hadoop.version>2.2.0</hadoop.version> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 52 | <junit.version>4.11</junit.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 53 | <commons.io.version>2.4</commons.io.version> |
| 54 | <servlet.api.version>2.5</servlet.api.version> |
| 55 | <json.version>20090211</json.version> |
| 56 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 57 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-release-plugin</artifactId> |
| 63 | <version>2.1</version> |
| 64 | <configuration> |
| 65 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-surefire-plugin</artifactId> |
| 71 | <version>2.16</version> |
| 72 | <configuration> |
| 73 | <failIfNoTests>false</failIfNoTests> |
| 74 | <systemPropertyVariables> |
| 75 | <skipFredSlowTests>true</skipFredSlowTests> |
| 76 | </systemPropertyVariables> |
| 77 | <forkCount>1</forkCount> |
| 78 | <reuseForks>false</reuseForks> |
| 79 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 80 | -Dfile.encoding=UTF-8 |
| 81 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 82 | -DrunSlowAQLTests=${runSlowAQLTests} |
| 83 | -Xdebug |
| 84 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 85 | <includes> |
| 86 | <include>${global.test.includes},${test.includes}</include> |
| 87 | </includes> |
| 88 | <excludes> |
| 89 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
| 90 | </excludes> |
| 91 | </configuration> |
| 92 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame^] | 93 | <plugin> |
| 94 | <groupId>org.apache.rat</groupId> |
| 95 | <artifactId>apache-rat-plugin</artifactId> |
| 96 | <version>0.11</version> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <phase>verify</phase> |
| 100 | <goals> |
| 101 | <goal>check</goal> |
| 102 | </goals> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | <configuration> |
| 106 | <excludeSubProjects>true</excludeSubProjects> |
| 107 | <licenses> |
| 108 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 109 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 110 | <licenseFamilyName>The MIT License</licenseFamilyName> |
| 111 | <notes>For JQuery MIT/GPL2 Dual License</notes> |
| 112 | <patterns> |
| 113 | <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> |
| 114 | <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern> |
| 115 | <pattern>http://jquery.org/license</pattern> |
| 116 | <pattern>Dual licensed under the MIT</pattern> |
| 117 | <pattern>Released under the MIT license by IOLA, December 2007.</pattern> |
| 118 | </patterns> |
| 119 | </license> |
| 120 | </licenses> |
| 121 | <licenseFamilies> |
| 122 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 123 | <familyName>The MIT License</familyName> |
| 124 | </licenseFamily> |
| 125 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 126 | <familyName>Apache License Version 2.0</familyName> |
| 127 | </licenseFamily> |
| 128 | </licenseFamilies> |
| 129 | <excludes> |
| 130 | <exclude>**/*.adm</exclude> |
| 131 | <exclude>**/*.aql</exclude> |
| 132 | <exclude>**/*.csv</exclude> |
| 133 | <exclude>**/*.ddl</exclude> |
| 134 | <exclude>**/*.iml</exclude> |
| 135 | <exclude>**/*.out</exclude> |
| 136 | <exclude>**/*.tbl</exclude> |
| 137 | <exclude>**/*.tsv</exclude> |
| 138 | <exclude>**/*.txt</exclude> |
| 139 | <exclude>**/*.xsd</exclude> |
| 140 | </excludes> |
| 141 | <includes> |
| 142 | <include>**/asterix-*</include> |
| 143 | <include>**/*.java</include> |
| 144 | </includes> |
| 145 | </configuration> |
| 146 | </plugin> |
Ian Maxon | 032a178 | 2015-06-30 17:10:51 -0700 | [diff] [blame] | 147 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 148 | </plugins> |
| 149 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 150 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 151 | <scm> |
| 152 | <connection>scm:git:https://code.google.com/p/asterixdb/</connection> |
| 153 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/asterixdb</developerConnection> |
| 154 | </scm> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 155 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 156 | <distributionManagement> |
| 157 | <repository> |
| 158 | <id>asterix-releases</id> |
| 159 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url> |
| 160 | </repository> |
| 161 | <snapshotRepository> |
| 162 | <id>asterix-snapshots</id> |
| 163 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url> |
| 164 | </snapshotRepository> |
| 165 | </distributionManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 166 | |
| 167 | <profiles> |
| 168 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 169 | <id>slow-aql-tests</id> |
| 170 | <properties> |
| 171 | <runSlowAQLTests>true</runSlowAQLTests> |
| 172 | </properties> |
| 173 | </profile> |
| 174 | <profile> |
| 175 | <id>optimizer-tests</id> |
| 176 | <properties> |
| 177 | <optimizer.tests /> |
| 178 | </properties> |
| 179 | </profile> |
| 180 | <profile> |
| 181 | <id>metadata-tests</id> |
| 182 | <properties> |
| 183 | <metadata.tests /> |
| 184 | </properties> |
| 185 | </profile> |
| 186 | <profile> |
| 187 | <id>execution-tests</id> |
| 188 | <properties> |
| 189 | <execution.tests /> |
| 190 | </properties> |
| 191 | </profile> |
| 192 | <profile> |
| 193 | <id>invalid-tests</id> |
| 194 | <properties> |
| 195 | <invalid.tests /> |
| 196 | </properties> |
| 197 | </profile> |
| 198 | <profile> |
| 199 | <id>32bitvm</id> |
| 200 | <activation> |
| 201 | <property> |
| 202 | <name>sun.arch.data.model</name> |
| 203 | <value>32</value> |
| 204 | </property> |
| 205 | </activation> |
| 206 | <properties> |
| 207 | <test.heap.size>2048</test.heap.size> |
| 208 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 209 | </profile> |
| 210 | |
| 211 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 212 | <id>64bitvm</id> |
| 213 | <activation> |
| 214 | <property> |
| 215 | <name>sun.arch.data.model</name> |
| 216 | <value>64</value> |
| 217 | </property> |
| 218 | </activation> |
| 219 | <properties> |
| 220 | <test.heap.size>3072</test.heap.size> |
| 221 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 222 | </profile> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 223 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 224 | </profiles> |
| 225 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 226 | <modules> |
| 227 | <module>asterix-common</module> |
| 228 | <module>asterix-algebra</module> |
| 229 | <module>asterix-app</module> |
| 230 | <module>asterix-tools</module> |
| 231 | <module>asterix-transactions</module> |
| 232 | <module>asterix-runtime</module> |
| 233 | <module>asterix-om</module> |
| 234 | <module>asterix-aql</module> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 235 | <module>asterix-external-data</module> |
| 236 | <module>asterix-examples</module> |
| 237 | <module>asterix-metadata</module> |
| 238 | <module>asterix-test-framework</module> |
| 239 | <module>asterix-maven-plugins</module> |
| 240 | <module>asterix-server</module> |
| 241 | <module>asterix-installer</module> |
| 242 | <module>asterix-events</module> |
| 243 | <module>asterix-doc</module> |
| 244 | <module>asterix-fuzzyjoin</module> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 245 | <module>asterix-yarn</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 246 | </modules> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 247 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 248 | <repositories> |
| 249 | <repository> |
| 250 | <releases> |
| 251 | <enabled>true</enabled> |
| 252 | <updatePolicy>always</updatePolicy> |
| 253 | <checksumPolicy>warn</checksumPolicy> |
| 254 | </releases> |
| 255 | <snapshots> |
| 256 | <enabled>true</enabled> |
| 257 | <updatePolicy>always</updatePolicy> |
| 258 | <checksumPolicy>fail</checksumPolicy> |
| 259 | </snapshots> |
| 260 | <id>asterix-public</id> |
| 261 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 262 | </repository> |
| 263 | <repository> |
| 264 | <releases> |
| 265 | <enabled>true</enabled> |
| 266 | <updatePolicy>always</updatePolicy> |
| 267 | <checksumPolicy>warn</checksumPolicy> |
| 268 | </releases> |
| 269 | <snapshots> |
| 270 | <enabled>true</enabled> |
| 271 | <updatePolicy>always</updatePolicy> |
| 272 | <checksumPolicy>fail</checksumPolicy> |
| 273 | </snapshots> |
| 274 | <id>third-party</id> |
| 275 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 276 | </repository> |
| 277 | <repository> |
| 278 | <releases> |
| 279 | <enabled>true</enabled> |
| 280 | <updatePolicy>always</updatePolicy> |
| 281 | <checksumPolicy>warn</checksumPolicy> |
| 282 | </releases> |
| 283 | <id>algebricks-releases</id> |
| 284 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 285 | </repository> |
| 286 | <repository> |
| 287 | <snapshots> |
| 288 | <enabled>true</enabled> |
| 289 | <updatePolicy>always</updatePolicy> |
| 290 | <checksumPolicy>fail</checksumPolicy> |
| 291 | </snapshots> |
| 292 | <id>algebricks-snapshots</id> |
| 293 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 294 | </repository> |
| 295 | </repositories> |
| 296 | <dependencyManagement> |
| 297 | <dependencies> |
| 298 | <dependency> |
| 299 | <groupId>junit</groupId> |
| 300 | <artifactId>junit</artifactId> |
| 301 | <version>${junit.version}</version> |
| 302 | </dependency> |
| 303 | <dependency> |
| 304 | <groupId>org.apache.maven</groupId> |
| 305 | <artifactId>maven-plugin-api</artifactId> |
| 306 | <version>2.2.1</version> |
| 307 | </dependency> |
| 308 | <dependency> |
| 309 | <groupId>org.apache.hadoop</groupId> |
| 310 | <artifactId>hadoop-yarn-common</artifactId> |
| 311 | <version>${hadoop.version}</version> |
| 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>org.apache.hadoop</groupId> |
| 315 | <artifactId>hadoop-yarn-client</artifactId> |
| 316 | <version>${hadoop.version}</version> |
| 317 | </dependency> |
| 318 | <dependency> |
| 319 | <groupId>org.apache.hadoop</groupId> |
| 320 | <artifactId>hadoop-client</artifactId> |
| 321 | <version>${hadoop.version}</version> |
| 322 | </dependency> |
| 323 | <dependency> |
| 324 | <groupId>org.apache.hadoop</groupId> |
| 325 | <artifactId>hadoop-hdfs</artifactId> |
| 326 | <version>${hadoop.version}</version> |
| 327 | </dependency> |
| 328 | <dependency> |
| 329 | <groupId>org.apache.hadoop</groupId> |
| 330 | <artifactId>hadoop-common</artifactId> |
| 331 | <version>${hadoop.version}</version> |
| 332 | </dependency> |
| 333 | <dependency> |
| 334 | <groupId>edu.uci.ics.hyracks</groupId> |
| 335 | <artifactId>algebricks-compiler</artifactId> |
| 336 | <version>${algebricks.version}</version> |
| 337 | </dependency> |
| 338 | <dependency> |
| 339 | <groupId>edu.uci.ics.hyracks</groupId> |
| 340 | <artifactId>hyracks-api</artifactId> |
| 341 | <version>${hyracks.version}</version> |
| 342 | </dependency> |
| 343 | <dependency> |
| 344 | <groupId>edu.uci.ics.hyracks</groupId> |
| 345 | <artifactId>hyracks-dataflow-std</artifactId> |
| 346 | <version>${hyracks.version}</version> |
| 347 | </dependency> |
| 348 | <dependency> |
| 349 | <groupId>edu.uci.ics.hyracks</groupId> |
| 350 | <artifactId>hyracks-control-cc</artifactId> |
| 351 | <version>${hyracks.version}</version> |
| 352 | </dependency> |
| 353 | <dependency> |
| 354 | <groupId>edu.uci.ics.hyracks</groupId> |
| 355 | <artifactId>hyracks-control-nc</artifactId> |
| 356 | <version>${hyracks.version}</version> |
| 357 | </dependency> |
| 358 | <dependency> |
| 359 | <groupId>edu.uci.ics.hyracks</groupId> |
| 360 | <artifactId>hyracks-server</artifactId> |
| 361 | <version>${hyracks.version}</version> |
| 362 | </dependency> |
| 363 | <dependency> |
| 364 | <groupId>edu.uci.ics.hyracks</groupId> |
| 365 | <artifactId>hyracks-cli</artifactId> |
| 366 | <version>${hyracks.version}</version> |
| 367 | </dependency> |
| 368 | <dependency> |
| 369 | <groupId>edu.uci.ics.hyracks</groupId> |
| 370 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 371 | <version>${hyracks.version}</version> |
| 372 | </dependency> |
| 373 | <dependency> |
| 374 | <groupId>edu.uci.ics.hyracks</groupId> |
| 375 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 376 | <version>${hyracks.version}</version> |
| 377 | </dependency> |
| 378 | <dependency> |
| 379 | <groupId>edu.uci.ics.hyracks</groupId> |
| 380 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 381 | <version>${hyracks.version}</version> |
| 382 | </dependency> |
| 383 | <dependency> |
| 384 | <groupId>edu.uci.ics.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame^] | 385 | <artifactId>hyracks-storage-am-invertedindex</artifactId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 386 | <version>${hyracks.version}</version> |
| 387 | </dependency> |
| 388 | <dependency> |
| 389 | <groupId>edu.uci.ics.hyracks</groupId> |
| 390 | <artifactId>hyracks-storage-am-common</artifactId> |
| 391 | <version>${hyracks.version}</version> |
| 392 | </dependency> |
| 393 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 394 | <groupId>edu.uci.ics.hyracks</groupId> |
| 395 | <artifactId>hyracks-client</artifactId> |
| 396 | <version>${hyracks.version}</version> |
| 397 | </dependency> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 398 | <dependency> |
| 399 | <groupId>edu.uci.ics.hyracks</groupId> |
| 400 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 401 | <version>${hyracks.version}</version> |
| 402 | </dependency> |
| 403 | <dependency> |
| 404 | <groupId>edu.uci.ics.hyracks</groupId> |
| 405 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 406 | <version>${hyracks.version}</version> |
| 407 | </dependency> |
| 408 | <dependency> |
| 409 | <groupId>edu.uci.ics.hyracks</groupId> |
| 410 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 411 | <version>${hyracks.version}</version> |
| 412 | </dependency> |
| 413 | <dependency> |
| 414 | <groupId>edu.uci.ics.hyracks</groupId> |
| 415 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 416 | <version>${hyracks.version}</version> |
| 417 | </dependency> |
| 418 | <dependency> |
| 419 | <groupId>org.json</groupId> |
| 420 | <artifactId>json</artifactId> |
| 421 | <version>${json.version}</version> |
| 422 | <type>jar</type> |
| 423 | </dependency> |
| 424 | <dependency> |
| 425 | <groupId>javax.servlet</groupId> |
| 426 | <artifactId>servlet-api</artifactId> |
| 427 | <version>${servlet.api.version}</version> |
| 428 | <type>jar</type> |
| 429 | </dependency> |
| 430 | <dependency> |
| 431 | <groupId>commons-io</groupId> |
| 432 | <artifactId>commons-io</artifactId> |
| 433 | <version>${commons.io.version}</version> |
| 434 | </dependency> |
| 435 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 436 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 437 | </project> |