blob: e875517b86b8bb7281338979d7f28f1c932a718b [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>
Eldon Carman0228b9c2014-11-25 18:13:46 -080023 <artifactId>asterix</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-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>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080047
48 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080049 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
50 <metadata.tests>**/metadata/*Test.java</metadata.tests>
51 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070052 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080053 <invalid.tests>**/DmlTest.java</invalid.tests>
54 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070055 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070056 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ildar Absalyamov6ad223f2015-10-09 10:21:07 -070057 <algebricks.version>0.2.17-SNAPSHOT</algebricks.version>
58 <hyracks.version>0.2.17-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080059 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070060 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080061 <commons.io.version>2.4</commons.io.version>
62 <servlet.api.version>2.5</servlet.api.version>
63 <json.version>20090211</json.version>
64 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000065
Eldon Carman0228b9c2014-11-25 18:13:46 -080066 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080070 <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 Carmanc66d23a2015-07-08 23:44:13 -070093 <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>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700132 <exclude>**/*.ast</exclude>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700133 <exclude>**/*.csv</exclude>
134 <exclude>**/*.ddl</exclude>
135 <exclude>**/*.iml</exclude>
136 <exclude>**/*.out</exclude>
137 <exclude>**/*.tbl</exclude>
138 <exclude>**/*.tsv</exclude>
139 <exclude>**/*.txt</exclude>
140 <exclude>**/*.xsd</exclude>
141 </excludes>
142 <includes>
143 <include>**/asterix-*</include>
144 <include>**/*.java</include>
145 </includes>
146 </configuration>
147 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-assembly-plugin</artifactId>
151 <!-- We override the configuration plugin to override the descriptor to use for building
152 the source release zip. Specifically, we would like to control the inclusions/exclusions.
153 For example, we exclude the KEYS file from the zip -->
154 <executions>
155 <execution>
156 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
157 the apache parent POM under the apache-release profile -->
158 <id>source-release-assembly</id>
159 <phase>package</phase>
160 <goals>
161 <goal>single</goal>
162 </goals>
163 <!-- combine.self should be override to replace the configuration in the parent POM -->
164 <configuration combine.self="override">
165 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
166 <descriptors>
167 <descriptor>src/main/assembly/source.xml</descriptor>
168 </descriptors>
169 </configuration>
170 </execution>
171 </executions>
172 </plugin>
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-compiler-plugin</artifactId>
176 <version>3.1</version>
177 <configuration>
178 <source>${jdk.version}</source>
179 <target>${jdk.version}</target>
180 <compilerArgument>-Xlint:all</compilerArgument>
181 </configuration>
182 </plugin>
Ian Maxon6059af32015-10-28 21:58:01 -0700183 <plugin>
184 <groupId>pl.project13.maven</groupId>
185 <artifactId>git-commit-id-plugin</artifactId>
186 <version>2.2.0</version>
187 <executions>
188 <execution>
189 <goals>
190 <goal>revision</goal>
191 </goals>
192 </execution>
193 </executions>
194
195 <configuration>
196 <!--
197 If you'd like to tell the plugin where your .git directory is,
198 use this setting, otherwise we'll perform a search trying to
199 figure out the right directory. It's better to add it explicite IMHO.
200 -->
201 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
202 <!-- this is false by default, forces the plugin to generate the git.properties file -->
203 <generateGitPropertiesFile>true</generateGitPropertiesFile>
204
205 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
206 <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
207 </configuration>
208
209 </plugin>
210 <!-- END OF GIT COMMIT ID PLUGIN CONFIGURATION -->
Eldon Carman0228b9c2014-11-25 18:13:46 -0800211 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700212 <pluginManagement>
213 <plugins>
214 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
215 <plugin>
216 <groupId>org.eclipse.m2e</groupId>
217 <artifactId>lifecycle-mapping</artifactId>
218 <version>1.0.0</version>
219 <configuration>
220 <lifecycleMappingMetadata>
221 <pluginExecutions>
222 <pluginExecution>
223 <pluginExecutionFilter>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-plugin-plugin</artifactId>
226 <versionRange>[3.4,)</versionRange>
227 <goals>
228 <goal>descriptor</goal>
229 </goals>
230 </pluginExecutionFilter>
231 <action>
232 <ignore></ignore>
233 </action>
234 </pluginExecution>
235 <pluginExecution>
236 <pluginExecutionFilter>
237 <groupId>org.apache.asterix</groupId>
238 <artifactId>record-manager-generator-maven-plugin</artifactId>
239 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
240 <goals>
241 <goal>generate-record-manager</goal>
242 </goals>
243 </pluginExecutionFilter>
244 <action>
245 <ignore></ignore>
246 </action>
247 </pluginExecution>
248 <pluginExecution>
249 <pluginExecutionFilter>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-jar-plugin</artifactId>
252 <versionRange>[2.4,)</versionRange>
253 <goals>
254 <goal>test-jar</goal>
255 </goals>
256 </pluginExecutionFilter>
257 <action>
258 <ignore></ignore>
259 </action>
260 </pluginExecution>
261 </pluginExecutions>
262 </lifecycleMappingMetadata>
263 </configuration>
264 </plugin>
265 </plugins>
266 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800267 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000268
Eldon Carman0228b9c2014-11-25 18:13:46 -0800269 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700270 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
271 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
272 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000273
Ian Maxon4e6a9232015-10-05 12:46:37 -0700274 <tag>HEAD</tag>
Ian Maxond2e1e892015-10-05 12:46:26 -0700275 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000276
277 <profiles>
278 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800279 <id>slow-aql-tests</id>
280 <properties>
281 <runSlowAQLTests>true</runSlowAQLTests>
282 </properties>
283 </profile>
284 <profile>
285 <id>optimizer-tests</id>
286 <properties>
287 <optimizer.tests />
288 </properties>
289 </profile>
290 <profile>
291 <id>metadata-tests</id>
292 <properties>
293 <metadata.tests />
294 </properties>
295 </profile>
296 <profile>
297 <id>execution-tests</id>
298 <properties>
299 <execution.tests />
300 </properties>
301 </profile>
302 <profile>
303 <id>invalid-tests</id>
304 <properties>
305 <invalid.tests />
306 </properties>
307 </profile>
308 <profile>
309 <id>32bitvm</id>
310 <activation>
311 <property>
312 <name>sun.arch.data.model</name>
313 <value>32</value>
314 </property>
315 </activation>
316 <properties>
317 <test.heap.size>2048</test.heap.size>
318 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000319 </profile>
320
321 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800322 <id>64bitvm</id>
323 <activation>
324 <property>
325 <name>sun.arch.data.model</name>
326 <value>64</value>
327 </property>
328 </activation>
329 <properties>
330 <test.heap.size>3072</test.heap.size>
331 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000332 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700333 <profile>
334 <id>asterix-release</id>
335 <build>
336 <plugins>
337 <plugin>
338 <groupId>org.apache.maven.plugins</groupId>
339 <artifactId>maven-assembly-plugin</artifactId>
340 <!-- We override the configuration plugin to override the descriptor to use for building
341 the source release zip. Specifically, we would like to control the inclusions/exclusions.
342 For example, we exclude the KEYS file from the zip -->
343 <executions>
344 <execution>
345 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
346 the apache parent POM under the apache-release profile -->
347 <id>source-release-assembly</id>
348 <phase>package</phase>
349 <goals>
350 <goal>single</goal>
351 </goals>
352 <!-- combine.self should be override to replace the configuration in the parent POM -->
353 <configuration combine.self="override">
354 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
355 <descriptors>
356 <descriptor>src/main/assembly/source.xml</descriptor>
357 </descriptors>
358 </configuration>
359 </execution>
360 </executions>
361 </plugin>
362 </plugins>
363 </build>
364 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700365 <profile>
366 <id>java6</id>
367 <activation>
368 <jdk>1.6</jdk>
369 </activation>
370 <properties>
371 <jdk.version>1.6</jdk.version>
372 </properties>
373 </profile>
374 <profile>
375 <id>java7</id>
376 <activation>
377 <jdk>1.7</jdk>
378 </activation>
379 <properties>
380 <jdk.version>1.7</jdk.version>
381 </properties>
382 </profile>
383 <profile>
384 <id>java8</id>
385 <activation>
386 <jdk>1.8</jdk>
387 </activation>
388 <properties>
389 <jdk.version>1.8</jdk.version>
390 </properties>
391 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000392 </profiles>
393
Eldon Carman0228b9c2014-11-25 18:13:46 -0800394 <modules>
395 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700396 <module>asterix-lang-common</module>
397 <module>asterix-lang-aql</module>
398 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800399 <module>asterix-algebra</module>
400 <module>asterix-app</module>
401 <module>asterix-tools</module>
402 <module>asterix-transactions</module>
403 <module>asterix-runtime</module>
404 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700405 <module>asterix-external-data</module>
406 <module>asterix-examples</module>
407 <module>asterix-metadata</module>
408 <module>asterix-test-framework</module>
409 <module>asterix-maven-plugins</module>
410 <module>asterix-server</module>
411 <module>asterix-installer</module>
412 <module>asterix-events</module>
413 <module>asterix-doc</module>
414 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700415 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800416 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000417
Eldon Carman0228b9c2014-11-25 18:13:46 -0800418 <repositories>
419 <repository>
420 <releases>
421 <enabled>true</enabled>
422 <updatePolicy>always</updatePolicy>
423 <checksumPolicy>warn</checksumPolicy>
424 </releases>
425 <snapshots>
426 <enabled>true</enabled>
427 <updatePolicy>always</updatePolicy>
428 <checksumPolicy>fail</checksumPolicy>
429 </snapshots>
430 <id>asterix-public</id>
431 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
432 </repository>
433 <repository>
434 <releases>
435 <enabled>true</enabled>
436 <updatePolicy>always</updatePolicy>
437 <checksumPolicy>warn</checksumPolicy>
438 </releases>
439 <snapshots>
440 <enabled>true</enabled>
441 <updatePolicy>always</updatePolicy>
442 <checksumPolicy>fail</checksumPolicy>
443 </snapshots>
444 <id>third-party</id>
445 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
446 </repository>
447 <repository>
448 <releases>
449 <enabled>true</enabled>
450 <updatePolicy>always</updatePolicy>
451 <checksumPolicy>warn</checksumPolicy>
452 </releases>
453 <id>algebricks-releases</id>
454 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
455 </repository>
456 <repository>
457 <snapshots>
458 <enabled>true</enabled>
459 <updatePolicy>always</updatePolicy>
460 <checksumPolicy>fail</checksumPolicy>
461 </snapshots>
462 <id>algebricks-snapshots</id>
463 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
464 </repository>
465 </repositories>
466 <dependencyManagement>
467 <dependencies>
468 <dependency>
469 <groupId>junit</groupId>
470 <artifactId>junit</artifactId>
471 <version>${junit.version}</version>
472 </dependency>
473 <dependency>
474 <groupId>org.apache.maven</groupId>
475 <artifactId>maven-plugin-api</artifactId>
476 <version>2.2.1</version>
477 </dependency>
478 <dependency>
479 <groupId>org.apache.hadoop</groupId>
480 <artifactId>hadoop-yarn-common</artifactId>
481 <version>${hadoop.version}</version>
482 </dependency>
483 <dependency>
484 <groupId>org.apache.hadoop</groupId>
485 <artifactId>hadoop-yarn-client</artifactId>
486 <version>${hadoop.version}</version>
487 </dependency>
488 <dependency>
489 <groupId>org.apache.hadoop</groupId>
490 <artifactId>hadoop-client</artifactId>
491 <version>${hadoop.version}</version>
492 </dependency>
493 <dependency>
494 <groupId>org.apache.hadoop</groupId>
495 <artifactId>hadoop-hdfs</artifactId>
496 <version>${hadoop.version}</version>
497 </dependency>
498 <dependency>
499 <groupId>org.apache.hadoop</groupId>
500 <artifactId>hadoop-common</artifactId>
501 <version>${hadoop.version}</version>
502 </dependency>
503 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700504 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800505 <artifactId>algebricks-compiler</artifactId>
506 <version>${algebricks.version}</version>
507 </dependency>
508 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700509 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800510 <artifactId>hyracks-api</artifactId>
511 <version>${hyracks.version}</version>
512 </dependency>
513 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700514 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700515 <artifactId>hyracks-util</artifactId>
516 <version>${hyracks.version}</version>
517 </dependency>
518 <dependency>
519 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800520 <artifactId>hyracks-dataflow-std</artifactId>
521 <version>${hyracks.version}</version>
522 </dependency>
523 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700524 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700525 <artifactId>hyracks-data</artifactId>
526 <version>${hyracks.version}</version>
527 </dependency>
528 <dependency>
529 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800530 <artifactId>hyracks-control-cc</artifactId>
531 <version>${hyracks.version}</version>
532 </dependency>
533 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700534 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800535 <artifactId>hyracks-control-nc</artifactId>
536 <version>${hyracks.version}</version>
537 </dependency>
538 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700539 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800540 <artifactId>hyracks-server</artifactId>
541 <version>${hyracks.version}</version>
542 </dependency>
543 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700544 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800545 <artifactId>hyracks-cli</artifactId>
546 <version>${hyracks.version}</version>
547 </dependency>
548 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700549 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800550 <artifactId>hyracks-dataflow-hadoop</artifactId>
551 <version>${hyracks.version}</version>
552 </dependency>
553 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700554 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800555 <artifactId>hyracks-storage-am-btree</artifactId>
556 <version>${hyracks.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>hyracks-storage-am-rtree</artifactId>
561 <version>${hyracks.version}</version>
562 </dependency>
563 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700564 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700565 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800566 <version>${hyracks.version}</version>
567 </dependency>
568 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700569 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800570 <artifactId>hyracks-storage-am-common</artifactId>
571 <version>${hyracks.version}</version>
572 </dependency>
573 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700574 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000575 <artifactId>hyracks-client</artifactId>
576 <version>${hyracks.version}</version>
577 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800578 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700579 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800580 <artifactId>hyracks-storage-am-lsm-common</artifactId>
581 <version>${hyracks.version}</version>
582 </dependency>
583 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700584 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800585 <artifactId>hyracks-storage-am-lsm-btree</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-storage-am-lsm-rtree</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-storage-am-lsm-invertedindex</artifactId>
596 <version>${hyracks.version}</version>
597 </dependency>
598 <dependency>
599 <groupId>org.json</groupId>
600 <artifactId>json</artifactId>
601 <version>${json.version}</version>
602 <type>jar</type>
603 </dependency>
604 <dependency>
605 <groupId>javax.servlet</groupId>
606 <artifactId>servlet-api</artifactId>
607 <version>${servlet.api.version}</version>
608 <type>jar</type>
609 </dependency>
610 <dependency>
611 <groupId>commons-io</groupId>
612 <artifactId>commons-io</artifactId>
613 <version>${commons.io.version}</version>
614 </dependency>
615 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000616 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000617</project>