blob: 54e7f34611e82aefd167a3148d590aab306a3278 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
vinayakbe5add8a2012-10-06 19:00:14 +000019
Ian Maxond8857792015-09-11 14:19:53 -070020
vinayakbe5add8a2012-10-06 19:00:14 +000021<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/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070023 <groupId>org.apache.hyracks</groupId>
Ian Maxon2378ed62015-11-24 13:04:19 -080024 <artifactId>apache-asterixdb-hyracks</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080025 <version>0.2.18-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000026 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000027 <name>hyracks-ecosystem-full-stack</name>
Ian Maxonc4821272015-08-21 16:08:01 -070028
JavierJia26c3b532015-10-23 13:49:32 -070029 <parent>
30 <groupId>org.apache</groupId>
31 <artifactId>apache</artifactId>
32 <version>LATEST</version>
33 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070034
JavierJia26c3b532015-10-23 13:49:32 -070035 <licenses>
36 <license>
37 <name>Apache License, Version 2.0</name>
38 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39 <distribution>repo</distribution>
40 <comments>A business-friendly OSS license</comments>
41 </license>
42 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000043
JavierJia26c3b532015-10-23 13:49:32 -070044 <properties>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Ian Maxoned5825d2015-12-09 12:35:33 -080046 <jdk.version>1.8</jdk.version>
JavierJia26c3b532015-10-23 13:49:32 -070047 <jvm.extraargs/>
Michael Blow7c15c132016-05-04 22:06:34 -040048 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
49
JavierJia26c3b532015-10-23 13:49:32 -070050 <!-- Definition of tests in various categories which may be excluded -->
51 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
52 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
53 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
54 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
55 </global.test.excludes>
56 <!-- Versions under dependencymanagement or used in many projects via properties -->
57 <hadoop.version>2.2.0</hadoop.version>
58 <junit.version>4.8.1</junit.version>
59 <commons.io.version>2.4</commons.io.version>
Michael Blow7c15c132016-05-04 22:06:34 -040060 <jacoco.version>0.7.6.201602180812</jacoco.version>
JavierJia26c3b532015-10-23 13:49:32 -070061 </properties>
62 <dependencyManagement>
63 <dependencies>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <version>${junit.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-yarn-client</artifactId>
72 <version>${hadoop.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-client</artifactId>
77 <version>${hadoop.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-common</artifactId>
82 <version>${hadoop.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-hdfs</artifactId>
87 <version>${hadoop.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-minicluster</artifactId>
92 <version>${hadoop.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-mapreduce-client-core</artifactId>
97 <version>${hadoop.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>commons-io</groupId>
101 <artifactId>commons-io</artifactId>
102 <version>${commons.io.version}</version>
103 </dependency>
104 </dependencies>
105 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800106
vinayakbe5add8a2012-10-06 19:00:14 +0000107 <build>
108 <plugins>
109 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>versions-maven-plugin</artifactId>
112 <version>1.2</version>
113 </plugin>
114 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700115 <groupId>org.apache.rat</groupId>
116 <artifactId>apache-rat-plugin</artifactId>
117 <version>0.11</version>
118 <executions>
119 <execution>
Ian Maxon9e37c962015-11-25 07:38:37 -0800120 <phase>validate</phase>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700121 <goals>
122 <goal>check</goal>
123 </goals>
124 </execution>
125 </executions>
126 <configuration>
127 <licenses>
128 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
129 <licenseFamilyCategory>MIT</licenseFamilyCategory>
130 <licenseFamilyName>The MIT License</licenseFamilyName>
131 <notes>For JQuery MIT/GPL2 Dual License</notes>
132 <patterns>
133 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
134 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
135 <pattern>http://jquery.org/license</pattern>
136 <pattern>Dual licensed under the MIT</pattern>
137 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
138 </patterns>
139 </license>
140 </licenses>
141 <licenseFamilies>
142 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
143 <familyName>The MIT License</familyName>
144 </licenseFamily>
145 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
146 <familyName>Apache License Version 2.0</familyName>
147 </licenseFamily>
148 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800149 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700150 <excludes>
Ian Maxonec572922015-09-08 14:48:37 -0700151 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
152 <exclude>**/javascript/flot/*.js</exclude>
153 <exclude>**/javascript/jsplumb/*.js</exclude>
154 <exclude>**/javascript/jquery/*.js</exclude>
155 <exclude>**/javascript/adminconsole/*.js</exclude>
156 <exclude>**/stylesheet/jquery-ui/**</exclude>
157 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
158 <exclude>**/src/test/resources/data/**</exclude>
159 <exclude>**/src/test/resources/results/**</exclude>
160 <exclude>**/src/test/resources/expected/**</exclude>
161 <exclude>**/testcases/*.piglet</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700162 <exclude>**/data/**/*.tbl</exclude>
163 <exclude>**/data/**/*.ddl</exclude>
164 <exclude>**/data/**/*.tsv</exclude>
165 <exclude>**/actual/conf.xml</exclude>
166 <exclude>**/actual/customer_result/part-*</exclude>
167 <exclude>**/src/main/resources/conf/*</exclude>
168 <exclude>**/data/dfs/**</exclude>
169 <exclude>**/invIndex*/**</exclude>
170 <exclude>**/*.job</exclude>
171 <exclude>**/*.conf</exclude>
172 <exclude>**/src/main/resources/*.cleaned</exclude>
173 <exclude>**/ClusterControllerService/**</exclude>
JavierJia26c3b532015-10-23 13:49:32 -0700174 <exclude>**/target/**</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700175 <exclude>**/output/**</exclude>
Jianfeng Jia6abc63e2016-02-25 18:28:20 -0800176 <exclude>**/target/**</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700177 <exclude>**/*.iml</exclude>
Abdullah Alamoudif6b9f1f2016-01-02 12:55:12 +0300178 <exclude>**/*.prefs</exclude>
Abdullah Alamoudi7dabc192016-03-16 01:58:46 +0300179 <exclude>**/data/*.txt</exclude>
180 <exclude>**/data/**/*.txt</exclude>
Abdullah Alamoudif6b9f1f2016-01-02 12:55:12 +0300181 <exclude>**/.classpath</exclude>
182 <exclude>**/.project</exclude>
Ian Maxon9e37c962015-11-25 07:38:37 -0800183 <exclude>**/target/**</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700184 <exclude>**/*.iml</exclude>
Ian Maxonbb5dc4c2016-02-02 18:16:30 -0800185 <exclude>**/.classpath</exclude>
186 <exclude>**/.project</exclude>
187 <exclude>**/.settings/**</exclude>
Ian Maxon9e37c962015-11-25 07:38:37 -0800188 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
189 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
190 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
191 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
192 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
193 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
194 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
195 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
196 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
197 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude>
198 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
199 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
200 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
201 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
202 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
203 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
204 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
205 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
206 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
207 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
208 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
209 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
210 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
211 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
212 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700213 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700214 </configuration>
215 </plugin>
216 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-surefire-plugin</artifactId>
219 <version>2.16</version>
220 <configuration>
221 <failIfNoTests>false</failIfNoTests>
222 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800223 <reuseForks>false</reuseForks>
Michael Blow7c15c132016-05-04 22:06:34 -0400224 <argLine>
225 -enableassertions -Xmx2048m
226 -Dfile.encoding=UTF-8
227 -Djava.util.logging.config.file=${user.home}/logging.properties
228 -Xdebug
229 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
230 ${coverageArgLine}
231 </argLine>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800232 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700233 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800234 </includes>
235 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700236 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800237 </excludes>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700238 </configuration>
239 </plugin>
240 <plugin>
241 <groupId>org.apache.maven.plugins</groupId>
242 <artifactId>maven-assembly-plugin</artifactId>
243 <!-- We override the configuration plugin to override the descriptor to use for building
244 the source release zip. Specifically, we would like to control the inclusions/exclusions.
245 For example, we exclude the KEYS file from the zip -->
246 <executions>
247 <execution>
248 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
249 the apache parent POM under the apache-release profile -->
250 <id>source-release-assembly</id>
251 <phase>package</phase>
252 <goals>
253 <goal>single</goal>
254 </goals>
255 <!-- combine.self should be override to replace the configuration in the parent POM -->
256 <configuration combine.self="override">
257 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
258 <descriptors>
259 <descriptor>src/main/assembly/source.xml</descriptor>
260 </descriptors>
261 </configuration>
262 </execution>
263 </executions>
264 </plugin>
265 <plugin>
266 <groupId>org.apache.maven.plugins</groupId>
267 <artifactId>maven-compiler-plugin</artifactId>
268 <version>3.1</version>
269 <configuration>
270 <source>${jdk.version}</source>
271 <target>${jdk.version}</target>
272 <compilerArgument>-Xlint:all</compilerArgument>
273 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000274 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700275 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800276 <artifactId>maven-resources-plugin</artifactId>
277 <version>2.7</version>
278 <executions>
279 <execution>
280 <id>copy-resources</id>
281 <phase>validate</phase>
282 <goals>
283 <goal>copy-resources</goal>
284 </goals>
285 <configuration>
286 <outputDirectory>target</outputDirectory>
287 <resources>
288 <resource>
289 <directory>${root.dir}/src/main/appended-resources</directory>
290 <!-- <filtering>true</filtering> -->
291 </resource>
292 </resources>
293 </configuration>
294 </execution>
295 </executions>
296 </plugin>
297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-remote-resources-plugin</artifactId>
300 <executions>
301 <execution>
302 <goals>
303 <goal>process</goal>
304 </goals>
305 <configuration>
306 <resourceBundles combine.children="append">
307 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
308 <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle>
309 </resourceBundles>
310 </configuration>
311 </execution>
312 </executions>
313 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000314 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700315 <pluginManagement>
316 <plugins>
317 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
318 <plugin>
319 <groupId>org.eclipse.m2e</groupId>
320 <artifactId>lifecycle-mapping</artifactId>
321 <version>1.0.0</version>
322 <configuration>
323 <lifecycleMappingMetadata>
324 <pluginExecutions>
325 <pluginExecution>
326 <pluginExecutionFilter>
327 <groupId>org.apache.rat</groupId>
328 <artifactId>apache-rat-plugin</artifactId>
329 <versionRange>[0.11,)</versionRange>
330 <goals>
331 <goal>check</goal>
332 </goals>
333 </pluginExecutionFilter>
334 <action>
335 <ignore></ignore>
336 </action>
337 </pluginExecution>
338 </pluginExecutions>
339 </lifecycleMappingMetadata>
340 </configuration>
341 </plugin>
342 </plugins>
343 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000344 </build>
345
346 <scm>
Ian Maxonc4821272015-08-21 16:08:01 -0700347 <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700348 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Ian Maxonc4821272015-08-21 16:08:01 -0700349 <url>https://github.com/apache/incubator-asterixdb-hyracks</url>
Ian Maxond4daeb42015-09-15 14:31:32 -0700350 <tag>HEAD</tag>
vinayakbe5add8a2012-10-06 19:00:14 +0000351 </scm>
352
vinayakb8983d2b2012-10-29 11:04:49 +0000353
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800354 <profiles>
355 <profile>
356 <id>hanging-pregelix-tests</id>
357 <properties>
358 <hanging.pregelix.tests />
359 </properties>
360 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700361 <profile>
362 <id>asterix-release</id>
363 <build>
364 <plugins>
365 <plugin>
366 <groupId>org.apache.maven.plugins</groupId>
367 <artifactId>maven-assembly-plugin</artifactId>
368 <!-- We override the configuration plugin to override the descriptor to use for building
369 the source release zip. Specifically, we would like to control the inclusions/exclusions.
370 For example, we exclude the KEYS file from the zip -->
371 <executions>
372 <execution>
373 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
374 the apache parent POM under the apache-release profile -->
375 <id>source-release-assembly</id>
376 <phase>package</phase>
377 <goals>
378 <goal>single</goal>
379 </goals>
380 <!-- combine.self should be override to replace the configuration in the parent POM -->
381 <configuration combine.self="override">
382 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
383 <descriptors>
384 <descriptor>src/main/assembly/source.xml</descriptor>
385 </descriptors>
386 </configuration>
387 </execution>
388 </executions>
389 </plugin>
390 </plugins>
391 </build>
392 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700393 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400394 <id>coverage</id>
395 <activation>
396 <property>
397 <name>coverage</name>
398 </property>
399 </activation>
400 <build>
401 <plugins>
402 <plugin>
403 <groupId>org.jacoco</groupId>
404 <artifactId>jacoco-maven-plugin</artifactId>
405 <version>${jacoco.version}</version>
406 <executions>
407 <execution>
408 <id>default-prepare-agent</id>
409 <goals>
410 <goal>prepare-agent</goal>
411 </goals>
412 <configuration>
413 <propertyName>coverageArgLine</propertyName>
414 </configuration>
415 </execution>
416 <execution>
417 <id>default-prepare-agent-integration</id>
418 <goals>
419 <goal>prepare-agent-integration</goal>
420 </goals>
421 <configuration>
422 <propertyName>coverageArgLine</propertyName>
423 </configuration>
424 </execution>
425 </executions>
426 </plugin>
427 </plugins>
428 </build>
429 <properties>
430 <coverage/>
431 </properties>
432 </profile>
433 <profile>
434 <id>no-coverage</id>
435 <activation>
436 <property>
437 <name>!coverage</name>
438 </property>
439 </activation>
440 <properties>
441 <coverageArgLine/>
442 </properties>
443 </profile>
444 <profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700445 <id>java8</id>
446 <activation>
447 <jdk>1.8</jdk>
448 </activation>
449 <properties>
450 <jdk.version>1.8</jdk.version>
451 </properties>
452 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800453 </profiles>
454
vinayakb8983d2b2012-10-29 11:04:49 +0000455 <repositories>
456 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800457 <id>maven-central</id>
458 <url>http://repo1.maven.org/maven2/</url>
459 </repository>
460 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000461 <id>hyracks-public</id>
462 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
463 </repository>
464 <repository>
465 <id>jboss-public</id>
466 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
467 </repository>
468 </repositories>
469
470 <pluginRepositories>
471 <pluginRepository>
472 <id>hyracks-public</id>
473 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
474 <releases>
475 <updatePolicy>always</updatePolicy>
476 </releases>
477 </pluginRepository>
478 </pluginRepositories>
479
vinayakbe5add8a2012-10-06 19:00:14 +0000480 <modules>
481 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000482 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000483 </modules>
484</project>