blob: 819f7aa20eae03357d31f9497e9322d0c0ade4e6 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmannea8ab392013-06-05 15:17:08 -07002<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07003 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
Till Westmannea8ab392013-06-05 15:17:08 -070019 !-->
Eldon Carman0228b9c2014-11-25 18:13:46 -080020<project
21 xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
Ian Maxonf18bba22015-08-21 12:35:14 -070025 <groupId>org.apache.asterix</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080026 <artifactId>asterix</artifactId>
27 <version>0.8.7-SNAPSHOT</version>
28 <packaging>pom</packaging>
29
Ian Maxon5c058c62015-08-21 16:06:15 -070030 <parent>
31 <groupId>org.apache</groupId>
32 <artifactId>apache</artifactId>
33 <version>LATEST</version>
34 </parent>
35
Ian4a816dc2014-11-26 15:46:32 -080036 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070037 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 <distribution>repo</distribution>
41 <comments>A business-friendly OSS license</comments>
42 </license>
Ian4a816dc2014-11-26 15:46:32 -080043 </licenses>
44
Eldon Carman0228b9c2014-11-25 18:13:46 -080045 <properties>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47 <jvm.extraargs />
Ian Maxonba7b55f2015-10-14 10:49:07 -070048 <jdk.version>1.8</jdk.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080049 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080050
51 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080052 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
53 <metadata.tests>**/metadata/*Test.java</metadata.tests>
54 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070055 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080056 <invalid.tests>**/DmlTest.java</invalid.tests>
57 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070058 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070059 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ildar Absalyamov6ad223f2015-10-09 10:21:07 -070060 <algebricks.version>0.2.17-SNAPSHOT</algebricks.version>
61 <hyracks.version>0.2.17-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080062 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070063 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080064 <commons.io.version>2.4</commons.io.version>
65 <servlet.api.version>2.5</servlet.api.version>
66 <json.version>20090211</json.version>
67 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000068
Eldon Carman0228b9c2014-11-25 18:13:46 -080069 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080073 <artifactId>maven-surefire-plugin</artifactId>
74 <version>2.16</version>
75 <configuration>
76 <failIfNoTests>false</failIfNoTests>
77 <systemPropertyVariables>
78 <skipFredSlowTests>true</skipFredSlowTests>
79 </systemPropertyVariables>
80 <forkCount>1</forkCount>
81 <reuseForks>false</reuseForks>
82 <argLine>-enableassertions -Xmx${test.heap.size}m
83 -Dfile.encoding=UTF-8
84 -Djava.util.logging.config.file=${user.home}/logging.properties
85 -DrunSlowAQLTests=${runSlowAQLTests}
86 -Xdebug
87 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
88 <includes>
89 <include>${global.test.includes},${test.includes}</include>
90 </includes>
91 <excludes>
92 <exclude>${global.test.excludes},${test.excludes}</exclude>
93 </excludes>
94 </configuration>
95 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070096 <plugin>
97 <groupId>org.apache.rat</groupId>
98 <artifactId>apache-rat-plugin</artifactId>
99 <version>0.11</version>
100 <executions>
101 <execution>
102 <phase>verify</phase>
103 <goals>
104 <goal>check</goal>
105 </goals>
106 </execution>
107 </executions>
108 <configuration>
109 <excludeSubProjects>true</excludeSubProjects>
110 <licenses>
111 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
112 <licenseFamilyCategory>MIT</licenseFamilyCategory>
113 <licenseFamilyName>The MIT License</licenseFamilyName>
114 <notes>For JQuery MIT/GPL2 Dual License</notes>
115 <patterns>
116 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
117 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
118 <pattern>http://jquery.org/license</pattern>
119 <pattern>Dual licensed under the MIT</pattern>
120 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
121 </patterns>
122 </license>
123 </licenses>
124 <licenseFamilies>
125 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
126 <familyName>The MIT License</familyName>
127 </licenseFamily>
128 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
129 <familyName>Apache License Version 2.0</familyName>
130 </licenseFamily>
131 </licenseFamilies>
132 <excludes>
133 <exclude>**/*.adm</exclude>
134 <exclude>**/*.aql</exclude>
135 <exclude>**/*.csv</exclude>
136 <exclude>**/*.ddl</exclude>
137 <exclude>**/*.iml</exclude>
138 <exclude>**/*.out</exclude>
139 <exclude>**/*.tbl</exclude>
140 <exclude>**/*.tsv</exclude>
141 <exclude>**/*.txt</exclude>
142 <exclude>**/*.xsd</exclude>
143 </excludes>
144 <includes>
145 <include>**/asterix-*</include>
146 <include>**/*.java</include>
147 </includes>
148 </configuration>
149 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700150 <plugin>
151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <!-- We override the configuration plugin to override the descriptor to use for building
154 the source release zip. Specifically, we would like to control the inclusions/exclusions.
155 For example, we exclude the KEYS file from the zip -->
156 <executions>
157 <execution>
158 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
159 the apache parent POM under the apache-release profile -->
160 <id>source-release-assembly</id>
161 <phase>package</phase>
162 <goals>
163 <goal>single</goal>
164 </goals>
165 <!-- combine.self should be override to replace the configuration in the parent POM -->
166 <configuration combine.self="override">
167 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
168 <descriptors>
169 <descriptor>src/main/assembly/source.xml</descriptor>
170 </descriptors>
171 </configuration>
172 </execution>
173 </executions>
174 </plugin>
175 <plugin>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-compiler-plugin</artifactId>
178 <version>3.1</version>
179 <configuration>
180 <source>${jdk.version}</source>
181 <target>${jdk.version}</target>
182 <compilerArgument>-Xlint:all</compilerArgument>
183 </configuration>
184 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800185 </plugins>
186 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000187
Eldon Carman0228b9c2014-11-25 18:13:46 -0800188 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700189 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
190 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
191 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000192
Ian Maxon5c058c62015-08-21 16:06:15 -0700193 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000194
195 <profiles>
196 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800197 <id>slow-aql-tests</id>
198 <properties>
199 <runSlowAQLTests>true</runSlowAQLTests>
200 </properties>
201 </profile>
202 <profile>
203 <id>optimizer-tests</id>
204 <properties>
205 <optimizer.tests />
206 </properties>
207 </profile>
208 <profile>
209 <id>metadata-tests</id>
210 <properties>
211 <metadata.tests />
212 </properties>
213 </profile>
214 <profile>
215 <id>execution-tests</id>
216 <properties>
217 <execution.tests />
218 </properties>
219 </profile>
220 <profile>
221 <id>invalid-tests</id>
222 <properties>
223 <invalid.tests />
224 </properties>
225 </profile>
226 <profile>
227 <id>32bitvm</id>
228 <activation>
229 <property>
230 <name>sun.arch.data.model</name>
231 <value>32</value>
232 </property>
233 </activation>
234 <properties>
235 <test.heap.size>2048</test.heap.size>
236 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000237 </profile>
238
239 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800240 <id>64bitvm</id>
241 <activation>
242 <property>
243 <name>sun.arch.data.model</name>
244 <value>64</value>
245 </property>
246 </activation>
247 <properties>
248 <test.heap.size>3072</test.heap.size>
249 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000250 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700251 <profile>
252 <id>asterix-release</id>
253 <build>
254 <plugins>
255 <plugin>
256 <groupId>org.apache.maven.plugins</groupId>
257 <artifactId>maven-assembly-plugin</artifactId>
258 <!-- We override the configuration plugin to override the descriptor to use for building
259 the source release zip. Specifically, we would like to control the inclusions/exclusions.
260 For example, we exclude the KEYS file from the zip -->
261 <executions>
262 <execution>
263 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
264 the apache parent POM under the apache-release profile -->
265 <id>source-release-assembly</id>
266 <phase>package</phase>
267 <goals>
268 <goal>single</goal>
269 </goals>
270 <!-- combine.self should be override to replace the configuration in the parent POM -->
271 <configuration combine.self="override">
272 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
273 <descriptors>
274 <descriptor>src/main/assembly/source.xml</descriptor>
275 </descriptors>
276 </configuration>
277 </execution>
278 </executions>
279 </plugin>
280 </plugins>
281 </build>
282 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700283 <profile>
284 <id>java6</id>
285 <activation>
286 <jdk>1.6</jdk>
287 </activation>
288 <properties>
289 <jdk.version>1.6</jdk.version>
290 </properties>
291 </profile>
292 <profile>
293 <id>java7</id>
294 <activation>
295 <jdk>1.7</jdk>
296 </activation>
297 <properties>
298 <jdk.version>1.7</jdk.version>
299 </properties>
300 </profile>
301 <profile>
302 <id>java8</id>
303 <activation>
304 <jdk>1.8</jdk>
305 </activation>
306 <properties>
307 <jdk.version>1.8</jdk.version>
308 </properties>
309 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000310 </profiles>
311
Eldon Carman0228b9c2014-11-25 18:13:46 -0800312 <modules>
313 <module>asterix-common</module>
314 <module>asterix-algebra</module>
315 <module>asterix-app</module>
316 <module>asterix-tools</module>
317 <module>asterix-transactions</module>
318 <module>asterix-runtime</module>
319 <module>asterix-om</module>
320 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700321 <module>asterix-external-data</module>
322 <module>asterix-examples</module>
323 <module>asterix-metadata</module>
324 <module>asterix-test-framework</module>
325 <module>asterix-maven-plugins</module>
326 <module>asterix-server</module>
327 <module>asterix-installer</module>
328 <module>asterix-events</module>
329 <module>asterix-doc</module>
330 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700331 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800332 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000333
Eldon Carman0228b9c2014-11-25 18:13:46 -0800334 <repositories>
335 <repository>
336 <releases>
337 <enabled>true</enabled>
338 <updatePolicy>always</updatePolicy>
339 <checksumPolicy>warn</checksumPolicy>
340 </releases>
341 <snapshots>
342 <enabled>true</enabled>
343 <updatePolicy>always</updatePolicy>
344 <checksumPolicy>fail</checksumPolicy>
345 </snapshots>
346 <id>asterix-public</id>
347 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
348 </repository>
349 <repository>
350 <releases>
351 <enabled>true</enabled>
352 <updatePolicy>always</updatePolicy>
353 <checksumPolicy>warn</checksumPolicy>
354 </releases>
355 <snapshots>
356 <enabled>true</enabled>
357 <updatePolicy>always</updatePolicy>
358 <checksumPolicy>fail</checksumPolicy>
359 </snapshots>
360 <id>third-party</id>
361 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
362 </repository>
363 <repository>
364 <releases>
365 <enabled>true</enabled>
366 <updatePolicy>always</updatePolicy>
367 <checksumPolicy>warn</checksumPolicy>
368 </releases>
369 <id>algebricks-releases</id>
370 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
371 </repository>
372 <repository>
373 <snapshots>
374 <enabled>true</enabled>
375 <updatePolicy>always</updatePolicy>
376 <checksumPolicy>fail</checksumPolicy>
377 </snapshots>
378 <id>algebricks-snapshots</id>
379 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
380 </repository>
381 </repositories>
382 <dependencyManagement>
383 <dependencies>
384 <dependency>
385 <groupId>junit</groupId>
386 <artifactId>junit</artifactId>
387 <version>${junit.version}</version>
388 </dependency>
389 <dependency>
390 <groupId>org.apache.maven</groupId>
391 <artifactId>maven-plugin-api</artifactId>
392 <version>2.2.1</version>
393 </dependency>
394 <dependency>
395 <groupId>org.apache.hadoop</groupId>
396 <artifactId>hadoop-yarn-common</artifactId>
397 <version>${hadoop.version}</version>
398 </dependency>
399 <dependency>
400 <groupId>org.apache.hadoop</groupId>
401 <artifactId>hadoop-yarn-client</artifactId>
402 <version>${hadoop.version}</version>
403 </dependency>
404 <dependency>
405 <groupId>org.apache.hadoop</groupId>
406 <artifactId>hadoop-client</artifactId>
407 <version>${hadoop.version}</version>
408 </dependency>
409 <dependency>
410 <groupId>org.apache.hadoop</groupId>
411 <artifactId>hadoop-hdfs</artifactId>
412 <version>${hadoop.version}</version>
413 </dependency>
414 <dependency>
415 <groupId>org.apache.hadoop</groupId>
416 <artifactId>hadoop-common</artifactId>
417 <version>${hadoop.version}</version>
418 </dependency>
419 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700420 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800421 <artifactId>algebricks-compiler</artifactId>
422 <version>${algebricks.version}</version>
423 </dependency>
424 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700425 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800426 <artifactId>hyracks-api</artifactId>
427 <version>${hyracks.version}</version>
428 </dependency>
429 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700430 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800431 <artifactId>hyracks-dataflow-std</artifactId>
432 <version>${hyracks.version}</version>
433 </dependency>
434 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700435 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800436 <artifactId>hyracks-control-cc</artifactId>
437 <version>${hyracks.version}</version>
438 </dependency>
439 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700440 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800441 <artifactId>hyracks-control-nc</artifactId>
442 <version>${hyracks.version}</version>
443 </dependency>
444 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700445 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800446 <artifactId>hyracks-server</artifactId>
447 <version>${hyracks.version}</version>
448 </dependency>
449 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700450 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800451 <artifactId>hyracks-cli</artifactId>
452 <version>${hyracks.version}</version>
453 </dependency>
454 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700455 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800456 <artifactId>hyracks-dataflow-hadoop</artifactId>
457 <version>${hyracks.version}</version>
458 </dependency>
459 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700460 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800461 <artifactId>hyracks-storage-am-btree</artifactId>
462 <version>${hyracks.version}</version>
463 </dependency>
464 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700465 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800466 <artifactId>hyracks-storage-am-rtree</artifactId>
467 <version>${hyracks.version}</version>
468 </dependency>
469 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700470 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700471 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800472 <version>${hyracks.version}</version>
473 </dependency>
474 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700475 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800476 <artifactId>hyracks-storage-am-common</artifactId>
477 <version>${hyracks.version}</version>
478 </dependency>
479 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700480 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000481 <artifactId>hyracks-client</artifactId>
482 <version>${hyracks.version}</version>
483 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800484 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700485 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800486 <artifactId>hyracks-storage-am-lsm-common</artifactId>
487 <version>${hyracks.version}</version>
488 </dependency>
489 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700490 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800491 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
492 <version>${hyracks.version}</version>
493 </dependency>
494 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700495 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800496 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
497 <version>${hyracks.version}</version>
498 </dependency>
499 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700500 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800501 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
502 <version>${hyracks.version}</version>
503 </dependency>
504 <dependency>
505 <groupId>org.json</groupId>
506 <artifactId>json</artifactId>
507 <version>${json.version}</version>
508 <type>jar</type>
509 </dependency>
510 <dependency>
511 <groupId>javax.servlet</groupId>
512 <artifactId>servlet-api</artifactId>
513 <version>${servlet.api.version}</version>
514 <type>jar</type>
515 </dependency>
516 <dependency>
517 <groupId>commons-io</groupId>
518 <artifactId>commons-io</artifactId>
519 <version>${commons.io.version}</version>
520 </dependency>
521 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000522 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000523</project>