blob: d8c7fc714284e3d4f359ede48d555ec6f1c46d4d [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>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700150 <artifactId>maven-compiler-plugin</artifactId>
151 <version>3.1</version>
152 <configuration>
153 <source>${jdk.version}</source>
154 <target>${jdk.version}</target>
155 <compilerArgument>-Xlint:all</compilerArgument>
156 </configuration>
157 </plugin>
Ian Maxon6059af32015-10-28 21:58:01 -0700158 <plugin>
159 <groupId>pl.project13.maven</groupId>
160 <artifactId>git-commit-id-plugin</artifactId>
161 <version>2.2.0</version>
162 <executions>
163 <execution>
164 <goals>
165 <goal>revision</goal>
166 </goals>
167 </execution>
168 </executions>
169
170 <configuration>
171 <!--
172 If you'd like to tell the plugin where your .git directory is,
173 use this setting, otherwise we'll perform a search trying to
174 figure out the right directory. It's better to add it explicite IMHO.
175 -->
176 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
177 <!-- this is false by default, forces the plugin to generate the git.properties file -->
178 <generateGitPropertiesFile>true</generateGitPropertiesFile>
179
180 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
181 <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
182 </configuration>
183
184 </plugin>
185 <!-- END OF GIT COMMIT ID PLUGIN CONFIGURATION -->
Eldon Carman0228b9c2014-11-25 18:13:46 -0800186 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700187 <pluginManagement>
188 <plugins>
189 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
190 <plugin>
191 <groupId>org.eclipse.m2e</groupId>
192 <artifactId>lifecycle-mapping</artifactId>
193 <version>1.0.0</version>
194 <configuration>
195 <lifecycleMappingMetadata>
196 <pluginExecutions>
197 <pluginExecution>
198 <pluginExecutionFilter>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-plugin-plugin</artifactId>
201 <versionRange>[3.4,)</versionRange>
202 <goals>
203 <goal>descriptor</goal>
204 </goals>
205 </pluginExecutionFilter>
206 <action>
207 <ignore></ignore>
208 </action>
209 </pluginExecution>
210 <pluginExecution>
211 <pluginExecutionFilter>
212 <groupId>org.apache.asterix</groupId>
213 <artifactId>record-manager-generator-maven-plugin</artifactId>
214 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
215 <goals>
216 <goal>generate-record-manager</goal>
217 </goals>
218 </pluginExecutionFilter>
219 <action>
220 <ignore></ignore>
221 </action>
222 </pluginExecution>
223 <pluginExecution>
224 <pluginExecutionFilter>
225 <groupId>org.apache.maven.plugins</groupId>
226 <artifactId>maven-jar-plugin</artifactId>
227 <versionRange>[2.4,)</versionRange>
228 <goals>
229 <goal>test-jar</goal>
230 </goals>
231 </pluginExecutionFilter>
232 <action>
233 <ignore></ignore>
234 </action>
235 </pluginExecution>
236 </pluginExecutions>
237 </lifecycleMappingMetadata>
238 </configuration>
239 </plugin>
240 </plugins>
241 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800242 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000243
Eldon Carman0228b9c2014-11-25 18:13:46 -0800244 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700245 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
246 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
247 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000248
Ian Maxon4e6a9232015-10-05 12:46:37 -0700249 <tag>HEAD</tag>
Ian Maxond2e1e892015-10-05 12:46:26 -0700250 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000251
252 <profiles>
253 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800254 <id>slow-aql-tests</id>
255 <properties>
256 <runSlowAQLTests>true</runSlowAQLTests>
257 </properties>
258 </profile>
259 <profile>
260 <id>optimizer-tests</id>
261 <properties>
262 <optimizer.tests />
263 </properties>
264 </profile>
265 <profile>
266 <id>metadata-tests</id>
267 <properties>
268 <metadata.tests />
269 </properties>
270 </profile>
271 <profile>
272 <id>execution-tests</id>
273 <properties>
274 <execution.tests />
275 </properties>
276 </profile>
277 <profile>
278 <id>invalid-tests</id>
279 <properties>
280 <invalid.tests />
281 </properties>
282 </profile>
283 <profile>
284 <id>32bitvm</id>
285 <activation>
286 <property>
287 <name>sun.arch.data.model</name>
288 <value>32</value>
289 </property>
290 </activation>
291 <properties>
292 <test.heap.size>2048</test.heap.size>
293 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000294 </profile>
295
296 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800297 <id>64bitvm</id>
298 <activation>
299 <property>
300 <name>sun.arch.data.model</name>
301 <value>64</value>
302 </property>
303 </activation>
304 <properties>
305 <test.heap.size>3072</test.heap.size>
306 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000307 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700308 <profile>
309 <id>asterix-release</id>
310 <build>
311 <plugins>
312 <plugin>
313 <groupId>org.apache.maven.plugins</groupId>
314 <artifactId>maven-assembly-plugin</artifactId>
315 <!-- We override the configuration plugin to override the descriptor to use for building
316 the source release zip. Specifically, we would like to control the inclusions/exclusions.
317 For example, we exclude the KEYS file from the zip -->
318 <executions>
319 <execution>
320 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
321 the apache parent POM under the apache-release profile -->
322 <id>source-release-assembly</id>
323 <phase>package</phase>
324 <goals>
325 <goal>single</goal>
326 </goals>
327 <!-- combine.self should be override to replace the configuration in the parent POM -->
328 <configuration combine.self="override">
329 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
330 <descriptors>
331 <descriptor>src/main/assembly/source.xml</descriptor>
332 </descriptors>
333 </configuration>
334 </execution>
335 </executions>
336 </plugin>
337 </plugins>
338 </build>
339 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700340 <profile>
341 <id>java6</id>
342 <activation>
343 <jdk>1.6</jdk>
344 </activation>
345 <properties>
346 <jdk.version>1.6</jdk.version>
347 </properties>
348 </profile>
349 <profile>
350 <id>java7</id>
351 <activation>
352 <jdk>1.7</jdk>
353 </activation>
354 <properties>
355 <jdk.version>1.7</jdk.version>
356 </properties>
357 </profile>
358 <profile>
359 <id>java8</id>
360 <activation>
361 <jdk>1.8</jdk>
362 </activation>
363 <properties>
364 <jdk.version>1.8</jdk.version>
365 </properties>
366 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000367 </profiles>
368
Eldon Carman0228b9c2014-11-25 18:13:46 -0800369 <modules>
370 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700371 <module>asterix-lang-common</module>
372 <module>asterix-lang-aql</module>
373 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800374 <module>asterix-algebra</module>
375 <module>asterix-app</module>
376 <module>asterix-tools</module>
377 <module>asterix-transactions</module>
378 <module>asterix-runtime</module>
379 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700380 <module>asterix-external-data</module>
381 <module>asterix-examples</module>
382 <module>asterix-metadata</module>
383 <module>asterix-test-framework</module>
384 <module>asterix-maven-plugins</module>
385 <module>asterix-server</module>
386 <module>asterix-installer</module>
387 <module>asterix-events</module>
388 <module>asterix-doc</module>
389 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700390 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800391 <module>asterix-replication</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800392 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000393
Eldon Carman0228b9c2014-11-25 18:13:46 -0800394 <repositories>
395 <repository>
396 <releases>
397 <enabled>true</enabled>
398 <updatePolicy>always</updatePolicy>
399 <checksumPolicy>warn</checksumPolicy>
400 </releases>
401 <snapshots>
402 <enabled>true</enabled>
403 <updatePolicy>always</updatePolicy>
404 <checksumPolicy>fail</checksumPolicy>
405 </snapshots>
406 <id>asterix-public</id>
407 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
408 </repository>
409 <repository>
410 <releases>
411 <enabled>true</enabled>
412 <updatePolicy>always</updatePolicy>
413 <checksumPolicy>warn</checksumPolicy>
414 </releases>
415 <snapshots>
416 <enabled>true</enabled>
417 <updatePolicy>always</updatePolicy>
418 <checksumPolicy>fail</checksumPolicy>
419 </snapshots>
420 <id>third-party</id>
421 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
422 </repository>
423 <repository>
424 <releases>
425 <enabled>true</enabled>
426 <updatePolicy>always</updatePolicy>
427 <checksumPolicy>warn</checksumPolicy>
428 </releases>
429 <id>algebricks-releases</id>
430 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
431 </repository>
432 <repository>
433 <snapshots>
434 <enabled>true</enabled>
435 <updatePolicy>always</updatePolicy>
436 <checksumPolicy>fail</checksumPolicy>
437 </snapshots>
438 <id>algebricks-snapshots</id>
439 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
440 </repository>
441 </repositories>
442 <dependencyManagement>
443 <dependencies>
444 <dependency>
445 <groupId>junit</groupId>
446 <artifactId>junit</artifactId>
447 <version>${junit.version}</version>
448 </dependency>
449 <dependency>
450 <groupId>org.apache.maven</groupId>
451 <artifactId>maven-plugin-api</artifactId>
452 <version>2.2.1</version>
453 </dependency>
454 <dependency>
455 <groupId>org.apache.hadoop</groupId>
456 <artifactId>hadoop-yarn-common</artifactId>
457 <version>${hadoop.version}</version>
458 </dependency>
459 <dependency>
460 <groupId>org.apache.hadoop</groupId>
461 <artifactId>hadoop-yarn-client</artifactId>
462 <version>${hadoop.version}</version>
463 </dependency>
464 <dependency>
465 <groupId>org.apache.hadoop</groupId>
466 <artifactId>hadoop-client</artifactId>
467 <version>${hadoop.version}</version>
468 </dependency>
469 <dependency>
470 <groupId>org.apache.hadoop</groupId>
471 <artifactId>hadoop-hdfs</artifactId>
472 <version>${hadoop.version}</version>
473 </dependency>
474 <dependency>
475 <groupId>org.apache.hadoop</groupId>
476 <artifactId>hadoop-common</artifactId>
477 <version>${hadoop.version}</version>
478 </dependency>
479 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700480 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800481 <artifactId>algebricks-compiler</artifactId>
482 <version>${algebricks.version}</version>
483 </dependency>
484 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700485 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800486 <artifactId>hyracks-api</artifactId>
487 <version>${hyracks.version}</version>
488 </dependency>
489 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700490 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700491 <artifactId>hyracks-util</artifactId>
492 <version>${hyracks.version}</version>
493 </dependency>
494 <dependency>
495 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800496 <artifactId>hyracks-dataflow-std</artifactId>
497 <version>${hyracks.version}</version>
498 </dependency>
499 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700500 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700501 <artifactId>hyracks-data</artifactId>
502 <version>${hyracks.version}</version>
503 </dependency>
504 <dependency>
505 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800506 <artifactId>hyracks-control-cc</artifactId>
507 <version>${hyracks.version}</version>
508 </dependency>
509 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700510 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800511 <artifactId>hyracks-control-nc</artifactId>
512 <version>${hyracks.version}</version>
513 </dependency>
514 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700515 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800516 <artifactId>hyracks-server</artifactId>
517 <version>${hyracks.version}</version>
518 </dependency>
519 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700520 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800521 <artifactId>hyracks-cli</artifactId>
522 <version>${hyracks.version}</version>
523 </dependency>
524 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700525 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800526 <artifactId>hyracks-dataflow-hadoop</artifactId>
527 <version>${hyracks.version}</version>
528 </dependency>
529 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700530 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800531 <artifactId>hyracks-storage-am-btree</artifactId>
532 <version>${hyracks.version}</version>
533 </dependency>
534 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700535 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800536 <artifactId>hyracks-storage-am-rtree</artifactId>
537 <version>${hyracks.version}</version>
538 </dependency>
539 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700540 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700541 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800542 <version>${hyracks.version}</version>
543 </dependency>
544 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700545 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800546 <artifactId>hyracks-storage-am-common</artifactId>
547 <version>${hyracks.version}</version>
548 </dependency>
549 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700550 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000551 <artifactId>hyracks-client</artifactId>
552 <version>${hyracks.version}</version>
553 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800554 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700555 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800556 <artifactId>hyracks-storage-am-lsm-common</artifactId>
557 <version>${hyracks.version}</version>
558 </dependency>
559 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700560 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800561 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
562 <version>${hyracks.version}</version>
563 </dependency>
564 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700565 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800566 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
567 <version>${hyracks.version}</version>
568 </dependency>
569 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700570 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800571 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
572 <version>${hyracks.version}</version>
573 </dependency>
574 <dependency>
575 <groupId>org.json</groupId>
576 <artifactId>json</artifactId>
577 <version>${json.version}</version>
578 <type>jar</type>
579 </dependency>
580 <dependency>
581 <groupId>javax.servlet</groupId>
582 <artifactId>servlet-api</artifactId>
583 <version>${servlet.api.version}</version>
584 <type>jar</type>
585 </dependency>
586 <dependency>
587 <groupId>commons-io</groupId>
588 <artifactId>commons-io</artifactId>
589 <version>${commons.io.version}</version>
590 </dependency>
591 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000592 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000593</project>