blob: dcabb5b50ef3a29dcdaebcb5092d5c17ebfb1527 [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 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070020<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">
Eldon Carman0228b9c2014-11-25 18:13:46 -080021 <modelVersion>4.0.0</modelVersion>
Ian Maxonf18bba22015-08-21 12:35:14 -070022 <groupId>org.apache.asterix</groupId>
Ian Maxonab556d12016-02-02 18:18:05 -080023 <artifactId>apache-asterixdb</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-SNAPSHOT</version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080025 <packaging>pom</packaging>
26
Ian Maxon5c058c62015-08-21 16:06:15 -070027 <parent>
28 <groupId>org.apache</groupId>
29 <artifactId>apache</artifactId>
30 <version>LATEST</version>
31 </parent>
32
Ian4a816dc2014-11-26 15:46:32 -080033 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070034 <license>
35 <name>Apache License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 <comments>A business-friendly OSS license</comments>
39 </license>
Ian4a816dc2014-11-26 15:46:32 -080040 </licenses>
41
Eldon Carman0228b9c2014-11-25 18:13:46 -080042 <properties>
43 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44 <jvm.extraargs />
Ian Maxonba7b55f2015-10-14 10:49:07 -070045 <jdk.version>1.8</jdk.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080046 <runSlowAQLTests>false</runSlowAQLTests>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080047 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080048
49 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080050 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
51 <metadata.tests>**/metadata/*Test.java</metadata.tests>
52 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070053 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080054 <invalid.tests>**/DmlTest.java</invalid.tests>
55 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070056 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070057 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ian Maxon3da9d062016-03-16 17:05:31 -070058 <algebricks.version>0.2.18-SNAPSHOT</algebricks.version>
59 <hyracks.version>0.2.18-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080060 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070061 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080062 <commons.io.version>2.4</commons.io.version>
63 <servlet.api.version>2.5</servlet.api.version>
64 <json.version>20090211</json.version>
Michael Blowfc644822016-03-16 10:21:24 -040065 <jacoco.version>0.7.6.201602180812</jacoco.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080066 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000067
Eldon Carman0228b9c2014-11-25 18:13:46 -080068 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080072 <artifactId>maven-surefire-plugin</artifactId>
73 <version>2.16</version>
74 <configuration>
75 <failIfNoTests>false</failIfNoTests>
76 <systemPropertyVariables>
77 <skipFredSlowTests>true</skipFredSlowTests>
78 </systemPropertyVariables>
79 <forkCount>1</forkCount>
80 <reuseForks>false</reuseForks>
Michael Blowfc644822016-03-16 10:21:24 -040081 <argLine>
82 -enableassertions -Xmx${test.heap.size}m
Eldon Carman0228b9c2014-11-25 18:13:46 -080083 -Dfile.encoding=UTF-8
84 -Djava.util.logging.config.file=${user.home}/logging.properties
85 -DrunSlowAQLTests=${runSlowAQLTests}
86 -Xdebug
Michael Blowfc644822016-03-16 10:21:24 -040087 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
88 ${coverageArgLine}
Ian Maxon3da9d062016-03-16 17:05:31 -070089 </argLine>
Eldon Carman0228b9c2014-11-25 18:13:46 -080090 <includes>
91 <include>${global.test.includes},${test.includes}</include>
92 </includes>
93 <excludes>
94 <exclude>${global.test.excludes},${test.excludes}</exclude>
95 </excludes>
96 </configuration>
97 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070098 <plugin>
99 <groupId>org.apache.rat</groupId>
100 <artifactId>apache-rat-plugin</artifactId>
101 <version>0.11</version>
102 <executions>
103 <execution>
104 <phase>verify</phase>
105 <goals>
106 <goal>check</goal>
107 </goals>
108 </execution>
109 </executions>
110 <configuration>
111 <excludeSubProjects>true</excludeSubProjects>
112 <licenses>
113 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
114 <licenseFamilyCategory>MIT</licenseFamilyCategory>
115 <licenseFamilyName>The MIT License</licenseFamilyName>
116 <notes>For JQuery MIT/GPL2 Dual License</notes>
117 <patterns>
118 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
119 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
120 <pattern>http://jquery.org/license</pattern>
121 <pattern>Dual licensed under the MIT</pattern>
122 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
123 </patterns>
124 </license>
125 </licenses>
126 <licenseFamilies>
127 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
128 <familyName>The MIT License</familyName>
129 </licenseFamily>
130 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
131 <familyName>Apache License Version 2.0</familyName>
132 </licenseFamily>
133 </licenseFamilies>
134 <excludes>
135 <exclude>**/*.adm</exclude>
136 <exclude>**/*.aql</exclude>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700137 <exclude>**/*.ast</exclude>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700138 <exclude>**/*.csv</exclude>
139 <exclude>**/*.ddl</exclude>
140 <exclude>**/*.iml</exclude>
141 <exclude>**/*.out</exclude>
142 <exclude>**/*.tbl</exclude>
143 <exclude>**/*.tsv</exclude>
144 <exclude>**/*.txt</exclude>
145 <exclude>**/*.xsd</exclude>
146 </excludes>
147 <includes>
148 <include>**/asterix-*</include>
149 <include>**/*.java</include>
150 </includes>
151 </configuration>
152 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700155 <artifactId>maven-compiler-plugin</artifactId>
156 <version>3.1</version>
157 <configuration>
158 <source>${jdk.version}</source>
159 <target>${jdk.version}</target>
160 <compilerArgument>-Xlint:all</compilerArgument>
161 </configuration>
162 </plugin>
Ian Maxon6059af32015-10-28 21:58:01 -0700163 <plugin>
164 <groupId>pl.project13.maven</groupId>
165 <artifactId>git-commit-id-plugin</artifactId>
166 <version>2.2.0</version>
167 <executions>
168 <execution>
169 <goals>
170 <goal>revision</goal>
171 </goals>
172 </execution>
173 </executions>
174
175 <configuration>
176 <!--
177 If you'd like to tell the plugin where your .git directory is,
178 use this setting, otherwise we'll perform a search trying to
179 figure out the right directory. It's better to add it explicite IMHO.
180 -->
181 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
182 <!-- this is false by default, forces the plugin to generate the git.properties file -->
183 <generateGitPropertiesFile>true</generateGitPropertiesFile>
184
185 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
186 <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
187 </configuration>
188
189 </plugin>
Ian Maxon6e5f18e2015-11-24 18:02:48 -0800190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-remote-resources-plugin</artifactId>
193 <executions>
194 <execution>
195 <goals>
196 <goal>process</goal>
197 </goals>
198 <configuration>
199 <appendedResourcesDirectory>${appendedResourcesDirectory}</appendedResourcesDirectory>
200 <resourceBundles>
201 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
202 <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle>
203 </resourceBundles>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
208 <plugin>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-resources-plugin</artifactId>
211 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800212 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700213 <pluginManagement>
214 <plugins>
215 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
216 <plugin>
217 <groupId>org.eclipse.m2e</groupId>
218 <artifactId>lifecycle-mapping</artifactId>
219 <version>1.0.0</version>
220 <configuration>
221 <lifecycleMappingMetadata>
222 <pluginExecutions>
223 <pluginExecution>
224 <pluginExecutionFilter>
225 <groupId>org.apache.maven.plugins</groupId>
226 <artifactId>maven-plugin-plugin</artifactId>
227 <versionRange>[3.4,)</versionRange>
228 <goals>
229 <goal>descriptor</goal>
230 </goals>
231 </pluginExecutionFilter>
232 <action>
233 <ignore></ignore>
234 </action>
235 </pluginExecution>
236 <pluginExecution>
237 <pluginExecutionFilter>
238 <groupId>org.apache.asterix</groupId>
239 <artifactId>record-manager-generator-maven-plugin</artifactId>
240 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
241 <goals>
242 <goal>generate-record-manager</goal>
243 </goals>
244 </pluginExecutionFilter>
245 <action>
246 <ignore></ignore>
247 </action>
248 </pluginExecution>
249 <pluginExecution>
250 <pluginExecutionFilter>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-jar-plugin</artifactId>
253 <versionRange>[2.4,)</versionRange>
254 <goals>
255 <goal>test-jar</goal>
256 </goals>
257 </pluginExecutionFilter>
258 <action>
259 <ignore></ignore>
260 </action>
261 </pluginExecution>
262 </pluginExecutions>
263 </lifecycleMappingMetadata>
264 </configuration>
265 </plugin>
266 </plugins>
267 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800268 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000269
Eldon Carman0228b9c2014-11-25 18:13:46 -0800270 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700271 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
272 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
273 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000274
Ian Maxonc1889c02016-02-10 15:26:24 -0800275 <tag>HEAD</tag>
Ian Maxond2e1e892015-10-05 12:46:26 -0700276 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000277
278 <profiles>
279 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800280 <id>slow-aql-tests</id>
281 <properties>
282 <runSlowAQLTests>true</runSlowAQLTests>
283 </properties>
284 </profile>
285 <profile>
286 <id>optimizer-tests</id>
287 <properties>
288 <optimizer.tests />
289 </properties>
290 </profile>
291 <profile>
292 <id>metadata-tests</id>
293 <properties>
294 <metadata.tests />
295 </properties>
296 </profile>
297 <profile>
298 <id>execution-tests</id>
299 <properties>
300 <execution.tests />
301 </properties>
302 </profile>
303 <profile>
304 <id>invalid-tests</id>
305 <properties>
306 <invalid.tests />
307 </properties>
308 </profile>
309 <profile>
310 <id>32bitvm</id>
311 <activation>
312 <property>
313 <name>sun.arch.data.model</name>
314 <value>32</value>
315 </property>
316 </activation>
317 <properties>
318 <test.heap.size>2048</test.heap.size>
319 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000320 </profile>
321
322 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800323 <id>64bitvm</id>
324 <activation>
325 <property>
326 <name>sun.arch.data.model</name>
327 <value>64</value>
328 </property>
329 </activation>
330 <properties>
331 <test.heap.size>3072</test.heap.size>
332 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000333 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700334 <profile>
335 <id>asterix-release</id>
336 <build>
337 <plugins>
338 <plugin>
339 <groupId>org.apache.maven.plugins</groupId>
340 <artifactId>maven-assembly-plugin</artifactId>
341 <!-- We override the configuration plugin to override the descriptor to use for building
342 the source release zip. Specifically, we would like to control the inclusions/exclusions.
343 For example, we exclude the KEYS file from the zip -->
344 <executions>
345 <execution>
346 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
347 the apache parent POM under the apache-release profile -->
348 <id>source-release-assembly</id>
349 <phase>package</phase>
350 <goals>
351 <goal>single</goal>
352 </goals>
353 <!-- combine.self should be override to replace the configuration in the parent POM -->
354 <configuration combine.self="override">
355 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
356 <descriptors>
357 <descriptor>src/main/assembly/source.xml</descriptor>
358 </descriptors>
359 </configuration>
360 </execution>
361 </executions>
362 </plugin>
363 </plugins>
364 </build>
365 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700366 <profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700367 <id>java8</id>
368 <activation>
369 <jdk>1.8</jdk>
370 </activation>
371 <properties>
372 <jdk.version>1.8</jdk.version>
373 </properties>
374 </profile>
Michael Blowfc644822016-03-16 10:21:24 -0400375 <profile>
376 <id>coverage</id>
377 <activation>
378 <property>
379 <name>coverage</name>
380 </property>
381 </activation>
382 <build>
383 <plugins>
384 <plugin>
385 <groupId>org.jacoco</groupId>
386 <artifactId>jacoco-maven-plugin</artifactId>
387 <version>${jacoco.version}</version>
388 <executions>
389 <execution>
390 <id>default-prepare-agent</id>
391 <goals>
392 <goal>prepare-agent</goal>
393 </goals>
394 <configuration>
395 <propertyName>coverageArgLine</propertyName>
396 </configuration>
397 </execution>
398 </executions>
399 </plugin>
400 </plugins>
401 </build>
402 <properties>
403 <coverage/>
404 </properties>
405 </profile>
406 <profile>
407 <id>no-coverage</id>
408 <activation>
409 <property>
410 <name>!coverage</name>
411 </property>
412 </activation>
413 <properties>
414 <coverageArgLine/>
415 </properties>
416 </profile>
Ian Maxonfd6a7bd2015-12-29 12:21:43 -0800417 <profile>
418 <id>doclint-java8-disable</id>
419 <activation>
420 <jdk>[1.8,)</jdk>
421 </activation>
422
423 <build>
424 <plugins>
425 <plugin>
426 <groupId>org.apache.maven.plugins</groupId>
427 <artifactId>maven-javadoc-plugin</artifactId>
428 <configuration>
429 <additionalparam>-Xdoclint:none</additionalparam>
430 </configuration>
431 </plugin>
432 </plugins>
433 </build>
434 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000435 </profiles>
436
Eldon Carman0228b9c2014-11-25 18:13:46 -0800437 <modules>
438 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700439 <module>asterix-lang-common</module>
440 <module>asterix-lang-aql</module>
441 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800442 <module>asterix-algebra</module>
443 <module>asterix-app</module>
444 <module>asterix-tools</module>
445 <module>asterix-transactions</module>
446 <module>asterix-runtime</module>
447 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700448 <module>asterix-external-data</module>
449 <module>asterix-examples</module>
450 <module>asterix-metadata</module>
451 <module>asterix-test-framework</module>
452 <module>asterix-maven-plugins</module>
453 <module>asterix-server</module>
454 <module>asterix-installer</module>
455 <module>asterix-events</module>
456 <module>asterix-doc</module>
457 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700458 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800459 <module>asterix-replication</module>
Ian Maxona70fba52016-02-18 13:52:36 -0800460 <module>asterix-experiments</module>
Michael Blowfc644822016-03-16 10:21:24 -0400461 <module>asterix-coverage</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800462 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000463
Eldon Carman0228b9c2014-11-25 18:13:46 -0800464 <repositories>
465 <repository>
466 <releases>
467 <enabled>true</enabled>
468 <updatePolicy>always</updatePolicy>
469 <checksumPolicy>warn</checksumPolicy>
470 </releases>
471 <snapshots>
472 <enabled>true</enabled>
473 <updatePolicy>always</updatePolicy>
474 <checksumPolicy>fail</checksumPolicy>
475 </snapshots>
476 <id>asterix-public</id>
477 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
478 </repository>
479 <repository>
480 <releases>
481 <enabled>true</enabled>
482 <updatePolicy>always</updatePolicy>
483 <checksumPolicy>warn</checksumPolicy>
484 </releases>
485 <snapshots>
486 <enabled>true</enabled>
487 <updatePolicy>always</updatePolicy>
488 <checksumPolicy>fail</checksumPolicy>
489 </snapshots>
490 <id>third-party</id>
491 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
492 </repository>
493 <repository>
494 <releases>
495 <enabled>true</enabled>
496 <updatePolicy>always</updatePolicy>
497 <checksumPolicy>warn</checksumPolicy>
498 </releases>
499 <id>algebricks-releases</id>
500 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
501 </repository>
502 <repository>
503 <snapshots>
504 <enabled>true</enabled>
505 <updatePolicy>always</updatePolicy>
506 <checksumPolicy>fail</checksumPolicy>
507 </snapshots>
508 <id>algebricks-snapshots</id>
509 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
510 </repository>
Ian Maxon73d42112015-12-23 16:49:25 -0800511 <repository>
512 <snapshots>
513 <enabled>true</enabled>
514 <updatePolicy>always</updatePolicy>
515 <checksumPolicy>fail</checksumPolicy>
516 </snapshots>
517 <id>apache-staging</id>
Ian Maxon8ee0b742016-02-10 15:08:43 -0800518 <url>https://repository.apache.org/content/repositories/orgapacheasterix-1019/</url>
Ian Maxon73d42112015-12-23 16:49:25 -0800519 </repository>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800520 </repositories>
521 <dependencyManagement>
522 <dependencies>
523 <dependency>
524 <groupId>junit</groupId>
525 <artifactId>junit</artifactId>
526 <version>${junit.version}</version>
527 </dependency>
528 <dependency>
529 <groupId>org.apache.maven</groupId>
530 <artifactId>maven-plugin-api</artifactId>
531 <version>2.2.1</version>
532 </dependency>
533 <dependency>
534 <groupId>org.apache.hadoop</groupId>
535 <artifactId>hadoop-yarn-common</artifactId>
536 <version>${hadoop.version}</version>
537 </dependency>
538 <dependency>
539 <groupId>org.apache.hadoop</groupId>
540 <artifactId>hadoop-yarn-client</artifactId>
541 <version>${hadoop.version}</version>
542 </dependency>
543 <dependency>
544 <groupId>org.apache.hadoop</groupId>
545 <artifactId>hadoop-client</artifactId>
546 <version>${hadoop.version}</version>
547 </dependency>
548 <dependency>
549 <groupId>org.apache.hadoop</groupId>
550 <artifactId>hadoop-hdfs</artifactId>
551 <version>${hadoop.version}</version>
552 </dependency>
553 <dependency>
554 <groupId>org.apache.hadoop</groupId>
555 <artifactId>hadoop-common</artifactId>
556 <version>${hadoop.version}</version>
557 </dependency>
558 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700559 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800560 <artifactId>algebricks-compiler</artifactId>
561 <version>${algebricks.version}</version>
562 </dependency>
563 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700564 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800565 <artifactId>hyracks-api</artifactId>
566 <version>${hyracks.version}</version>
567 </dependency>
568 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700569 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700570 <artifactId>hyracks-util</artifactId>
571 <version>${hyracks.version}</version>
572 </dependency>
573 <dependency>
574 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800575 <artifactId>hyracks-dataflow-std</artifactId>
576 <version>${hyracks.version}</version>
577 </dependency>
578 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700579 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700580 <artifactId>hyracks-data</artifactId>
581 <version>${hyracks.version}</version>
582 </dependency>
583 <dependency>
584 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800585 <artifactId>hyracks-control-cc</artifactId>
586 <version>${hyracks.version}</version>
587 </dependency>
588 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700589 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800590 <artifactId>hyracks-control-nc</artifactId>
591 <version>${hyracks.version}</version>
592 </dependency>
593 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700594 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800595 <artifactId>hyracks-server</artifactId>
596 <version>${hyracks.version}</version>
597 </dependency>
598 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700599 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800600 <artifactId>hyracks-cli</artifactId>
601 <version>${hyracks.version}</version>
602 </dependency>
603 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700604 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800605 <artifactId>hyracks-dataflow-hadoop</artifactId>
606 <version>${hyracks.version}</version>
607 </dependency>
608 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700609 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800610 <artifactId>hyracks-storage-am-btree</artifactId>
611 <version>${hyracks.version}</version>
612 </dependency>
613 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700614 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800615 <artifactId>hyracks-storage-am-rtree</artifactId>
616 <version>${hyracks.version}</version>
617 </dependency>
618 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700619 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700620 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800621 <version>${hyracks.version}</version>
622 </dependency>
623 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700624 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800625 <artifactId>hyracks-storage-am-common</artifactId>
626 <version>${hyracks.version}</version>
627 </dependency>
628 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700629 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000630 <artifactId>hyracks-client</artifactId>
631 <version>${hyracks.version}</version>
632 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800633 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700634 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800635 <artifactId>hyracks-storage-am-lsm-common</artifactId>
636 <version>${hyracks.version}</version>
637 </dependency>
638 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700639 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800640 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
641 <version>${hyracks.version}</version>
642 </dependency>
643 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700644 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800645 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
646 <version>${hyracks.version}</version>
647 </dependency>
648 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700649 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800650 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
651 <version>${hyracks.version}</version>
652 </dependency>
653 <dependency>
654 <groupId>org.json</groupId>
655 <artifactId>json</artifactId>
656 <version>${json.version}</version>
657 <type>jar</type>
658 </dependency>
659 <dependency>
660 <groupId>javax.servlet</groupId>
661 <artifactId>servlet-api</artifactId>
662 <version>${servlet.api.version}</version>
663 <type>jar</type>
664 </dependency>
665 <dependency>
666 <groupId>commons-io</groupId>
667 <artifactId>commons-io</artifactId>
668 <version>${commons.io.version}</version>
669 </dependency>
670 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000671 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000672</project>