blob: 2c078c46665c78eb8b9d519ae7ca7a77683ac0e6 [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
20<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">
21 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks</groupId>
Michael Blowc3dfd4b2017-01-17 17:19:49 -050023 <artifactId>apache-hyracks</artifactId>
Ian Maxona3435a32017-01-18 18:31:30 -080024 <version>0.3.1-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000025 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000026 <name>hyracks-ecosystem-full-stack</name>
Michael Blowc96bb1f2017-01-16 16:31:54 -050027 <url>https://asterixdb.apache.org/</url>
Ian Maxonc4821272015-08-21 16:08:01 -070028
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 <parent>
30 <groupId>org.apache</groupId>
31 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050032 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040033 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070035
Michael Blowb4c1fb02016-05-09 15:41:00 -070036 <licenses>
37 <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>
43 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000044
Ian Maxon4b228432017-01-16 13:35:16 -080045 <scm>
46 <connection>scm:git:https://github.com/apache/asterixdb</connection>
47 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
48 <url>https://github.com/apache/asterixdb</url>
Ian Maxona3435a32017-01-18 18:31:30 -080049 <tag>HEAD</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080050 </scm>
51
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <properties>
53 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040055 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070056 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow7c15c132016-05-04 22:06:34 -040057
Michael Blowb4c1fb02016-05-09 15:41:00 -070058 <!-- Definition of tests in various categories which may be excluded -->
59 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
60 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
61 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
62 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
63 </global.test.excludes>
64 <!-- Versions under dependencymanagement or used in many projects via properties -->
65 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow599ef8f2017-01-12 11:02:53 -050067 <jetty.version>9.3.11.v20160721</jetty.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070068 </properties>
69 <dependencyManagement>
70 <dependencies>
71 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050072 <groupId>org.eclipse.jetty</groupId>
73 <artifactId>jetty-server</artifactId>
74 <version>${jetty.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.eclipse.jetty</groupId>
78 <artifactId>jetty-servlet</artifactId>
79 <version>${jetty.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.eclipse.jetty</groupId>
83 <artifactId>jetty-http</artifactId>
84 <version>${jetty.version}</version>
85 </dependency>
86 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070087 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050089 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070090 </dependency>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-yarn-client</artifactId>
94 <version>${hadoop.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-client</artifactId>
99 <version>${hadoop.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-common</artifactId>
104 <version>${hadoop.version}</version>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hadoop</groupId>
108 <artifactId>hadoop-hdfs</artifactId>
109 <version>${hadoop.version}</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-minicluster</artifactId>
114 <version>${hadoop.version}</version>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.hadoop</groupId>
118 <artifactId>hadoop-mapreduce-client-core</artifactId>
119 <version>${hadoop.version}</version>
120 </dependency>
121 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400122 <groupId>org.apache.hadoop</groupId>
123 <artifactId>hadoop-hdfs</artifactId>
124 <version>${hadoop.version}</version>
125 <classifier>tests</classifier>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700129 <groupId>commons-io</groupId>
130 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500131 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700132 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800133 <dependency>
134 <groupId>com.fasterxml.jackson.core</groupId>
135 <artifactId>jackson-databind</artifactId>
136 <version>2.8.4</version>
137 </dependency>
138 <dependency>
139 <groupId>com.fasterxml.jackson.core</groupId>
140 <artifactId>jackson-core</artifactId>
141 <version>2.8.4</version>
142 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500143 <dependency>
144 <groupId>com.google.guava</groupId>
145 <artifactId>guava</artifactId>
146 <version>18.0</version>
147 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500148 <dependency>
149 <groupId>org.apache.commons</groupId>
150 <artifactId>commons-lang3</artifactId>
151 <version>3.5</version>
152 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500153 <dependency>
154 <groupId>org.apache.rat</groupId>
155 <artifactId>apache-rat-plugin</artifactId>
156 <version>0.12</version>
157 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700158 </dependencies>
159 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800160
vinayakbe5add8a2012-10-06 19:00:14 +0000161 <build>
162 <plugins>
163 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400164 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500165 <artifactId>maven-jar-plugin</artifactId>
166 <version>3.0.0</version>
167 <configuration>
168 <excludes>
169 <exclude>**/DEPENDENCIES</exclude>
170 </excludes>
171 </configuration>
172 </plugin>
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400175 <artifactId>maven-dependency-plugin</artifactId>
176 <version>2.10</version>
177 <configuration>
178 <failOnWarning>true</failOnWarning>
179 <outputXML>true</outputXML>
180 </configuration>
181 <executions>
182 <execution>
183 <phase>process-test-classes</phase>
184 <goals>
185 <goal>analyze-only</goal>
186 </goals>
187 </execution>
188 </executions>
189 </plugin>
190 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800191 <groupId>org.codehaus.mojo</groupId>
192 <artifactId>versions-maven-plugin</artifactId>
193 <version>1.2</version>
194 </plugin>
195 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700196 <groupId>org.apache.rat</groupId>
197 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700198 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700199 <execution>
200 <phase>validate</phase>
201 <goals>
202 <goal>check</goal>
203 </goals>
204 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700205 </executions>
206 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500207 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
208 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700209 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500210 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700211 </licenses>
212 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500213 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700214 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500215 <excludeSubProjects>true</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700216 </configuration>
217 </plugin>
218 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-surefire-plugin</artifactId>
221 <version>2.16</version>
222 <configuration>
223 <failIfNoTests>false</failIfNoTests>
224 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800225 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700226 <argLine>-enableassertions -Xmx2048m
227 -Dfile.encoding=UTF-8
228 -Djava.util.logging.config.file=${user.home}/logging.properties
229 -Xdebug
230 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
231 ${coverageArgLine}
232 </argLine>
233 <includes>
234 <include>${global.test.includes},${test.includes}</include>
235 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800236 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700237 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800238 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700239 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700240 </plugin>
241 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700242 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700243 <artifactId>maven-compiler-plugin</artifactId>
244 <version>3.1</version>
245 <configuration>
246 <source>${jdk.version}</source>
247 <target>${jdk.version}</target>
248 <compilerArgument>-Xlint:all</compilerArgument>
249 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000250 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700251 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800252 <artifactId>maven-resources-plugin</artifactId>
253 <version>2.7</version>
254 <executions>
255 <execution>
256 <id>copy-resources</id>
257 <phase>validate</phase>
258 <goals>
259 <goal>copy-resources</goal>
260 </goals>
261 <configuration>
262 <outputDirectory>target</outputDirectory>
263 <resources>
264 <resource>
265 <directory>${root.dir}/src/main/appended-resources</directory>
266 <!-- <filtering>true</filtering> -->
267 </resource>
268 </resources>
269 </configuration>
270 </execution>
271 </executions>
272 </plugin>
273 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700274 <groupId>org.apache.maven.plugins</groupId>
275 <artifactId>maven-remote-resources-plugin</artifactId>
276 <executions>
277 <execution>
278 <goals>
279 <goal>process</goal>
280 </goals>
281 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500282 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700283 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700284 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500285 <properties>
286 <projectName>Apache Hyracks - ${project.name}</projectName>
287 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700288 </configuration>
289 </execution>
290 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800291 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400292 <plugin>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-checkstyle-plugin</artifactId>
295 <version>2.17</version>
296 <executions>
297 <execution>
298 <id>verify-style</id>
299 <phase>process-classes</phase>
300 <goals>
301 <goal>check</goal>
302 </goals>
303 </execution>
304 </executions>
305 <configuration>
306 <logViolationsToConsole>true</logViolationsToConsole>
307 <checkstyleRules>
308 <module name="Checker">
309 <!-- Checks for whitespace -->
310 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400311 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400312 </module>
313 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400314 <includes>**/*.java,**/*.jj</includes>
315 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400316 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
317 </configuration>
318 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400319 <plugin>
320 <groupId>org.apache.maven.plugins</groupId>
321 <artifactId>maven-enforcer-plugin</artifactId>
322 <version>1.4.1</version>
323 <executions>
324 <execution>
325 <id>enforce-versions</id>
326 <goals>
327 <goal>enforce</goal>
328 </goals>
329 <configuration>
330 <rules>
331 <requireMavenVersion>
332 <version>[3.3.9,)</version>
333 </requireMavenVersion>
334 </rules>
335 </configuration>
336 </execution>
337 </executions>
338 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000339 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700340 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700341 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500342 <plugin>
343 <groupId>org.apache.rat</groupId>
344 <artifactId>apache-rat-plugin</artifactId>
345 <version>0.12</version>
346 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700347 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
348 <plugin>
349 <groupId>org.eclipse.m2e</groupId>
350 <artifactId>lifecycle-mapping</artifactId>
351 <version>1.0.0</version>
352 <configuration>
353 <lifecycleMappingMetadata>
354 <pluginExecutions>
355 <pluginExecution>
356 <pluginExecutionFilter>
357 <groupId>org.apache.rat</groupId>
358 <artifactId>apache-rat-plugin</artifactId>
359 <versionRange>[0.11,)</versionRange>
360 <goals>
361 <goal>check</goal>
362 </goals>
363 </pluginExecutionFilter>
364 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400365 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700366 </action>
367 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400368 <pluginExecution>
369 <pluginExecutionFilter>
370 <groupId>org.apache.maven.plugins</groupId>
371 <artifactId>maven-checkstyle-plugin</artifactId>
372 <versionRange>[2.17,)</versionRange>
373 <goals>
374 <goal>check</goal>
375 </goals>
376 </pluginExecutionFilter>
377 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400378 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400379 </action>
380 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700381 <pluginExecution>
382 <pluginExecutionFilter>
383 <groupId>org.apache.maven.plugins</groupId>
384 <artifactId>maven-dependency-plugin</artifactId>
385 <versionRange>[2.10,)</versionRange>
386 <goals>
387 <goal>analyze-only</goal>
388 </goals>
389 </pluginExecutionFilter>
390 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800391 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700392 </action>
393 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700394 </pluginExecutions>
395 </lifecycleMappingMetadata>
396 </configuration>
397 </plugin>
398 </plugins>
399 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000400 </build>
401
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800402 <profiles>
403 <profile>
404 <id>hanging-pregelix-tests</id>
405 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400406 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800407 </properties>
408 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700409 <profile>
410 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700411 <activation>
412 <file>
413 <exists>src/main/assembly/source.xml</exists>
414 </file>
415 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700416 <build>
417 <plugins>
418 <plugin>
419 <groupId>org.apache.maven.plugins</groupId>
420 <artifactId>maven-assembly-plugin</artifactId>
421 <!-- We override the configuration plugin to override the descriptor to use for building
422 the source release zip. Specifically, we would like to control the inclusions/exclusions.
423 For example, we exclude the KEYS file from the zip -->
424 <executions>
425 <execution>
426 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
427 the apache parent POM under the apache-release profile -->
428 <id>source-release-assembly</id>
429 <phase>package</phase>
430 <goals>
431 <goal>single</goal>
432 </goals>
433 <!-- combine.self should be override to replace the configuration in the parent POM -->
434 <configuration combine.self="override">
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700435 <descriptors>
436 <descriptor>src/main/assembly/source.xml</descriptor>
437 </descriptors>
438 </configuration>
439 </execution>
440 </executions>
441 </plugin>
442 </plugins>
443 </build>
444 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700445 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400446 <id>coverage</id>
447 <activation>
448 <property>
449 <name>coverage</name>
450 </property>
451 </activation>
452 <build>
453 <plugins>
454 <plugin>
455 <groupId>org.jacoco</groupId>
456 <artifactId>jacoco-maven-plugin</artifactId>
457 <version>${jacoco.version}</version>
458 <executions>
459 <execution>
460 <id>default-prepare-agent</id>
461 <goals>
462 <goal>prepare-agent</goal>
463 </goals>
464 <configuration>
465 <propertyName>coverageArgLine</propertyName>
466 </configuration>
467 </execution>
468 <execution>
469 <id>default-prepare-agent-integration</id>
470 <goals>
471 <goal>prepare-agent-integration</goal>
472 </goals>
473 <configuration>
474 <propertyName>coverageArgLine</propertyName>
475 </configuration>
476 </execution>
477 </executions>
478 </plugin>
479 </plugins>
480 </build>
481 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400482 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400483 </properties>
484 </profile>
485 <profile>
486 <id>no-coverage</id>
487 <activation>
488 <property>
489 <name>!coverage</name>
490 </property>
491 </activation>
492 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400493 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400494 </properties>
495 </profile>
496 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700497 <id>java8</id>
498 <activation>
499 <jdk>1.8</jdk>
500 </activation>
501 <properties>
502 <jdk.version>1.8</jdk.version>
503 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700504 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800505 </profiles>
506
vinayakbe5add8a2012-10-06 19:00:14 +0000507 <modules>
508 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000509 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500510 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000511 </modules>
512</project>