blob: 685e1be24c4f83fd42725f6e76abdd01fda04b82 [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>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700341 <id>java8</id>
342 <activation>
343 <jdk>1.8</jdk>
344 </activation>
345 <properties>
346 <jdk.version>1.8</jdk.version>
347 </properties>
348 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000349 </profiles>
350
Eldon Carman0228b9c2014-11-25 18:13:46 -0800351 <modules>
352 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700353 <module>asterix-lang-common</module>
354 <module>asterix-lang-aql</module>
355 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800356 <module>asterix-algebra</module>
357 <module>asterix-app</module>
358 <module>asterix-tools</module>
359 <module>asterix-transactions</module>
360 <module>asterix-runtime</module>
361 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700362 <module>asterix-external-data</module>
363 <module>asterix-examples</module>
364 <module>asterix-metadata</module>
365 <module>asterix-test-framework</module>
366 <module>asterix-maven-plugins</module>
367 <module>asterix-server</module>
368 <module>asterix-installer</module>
369 <module>asterix-events</module>
370 <module>asterix-doc</module>
371 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700372 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800373 <module>asterix-replication</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800374 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000375
Eldon Carman0228b9c2014-11-25 18:13:46 -0800376 <repositories>
377 <repository>
378 <releases>
379 <enabled>true</enabled>
380 <updatePolicy>always</updatePolicy>
381 <checksumPolicy>warn</checksumPolicy>
382 </releases>
383 <snapshots>
384 <enabled>true</enabled>
385 <updatePolicy>always</updatePolicy>
386 <checksumPolicy>fail</checksumPolicy>
387 </snapshots>
388 <id>asterix-public</id>
389 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
390 </repository>
391 <repository>
392 <releases>
393 <enabled>true</enabled>
394 <updatePolicy>always</updatePolicy>
395 <checksumPolicy>warn</checksumPolicy>
396 </releases>
397 <snapshots>
398 <enabled>true</enabled>
399 <updatePolicy>always</updatePolicy>
400 <checksumPolicy>fail</checksumPolicy>
401 </snapshots>
402 <id>third-party</id>
403 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
404 </repository>
405 <repository>
406 <releases>
407 <enabled>true</enabled>
408 <updatePolicy>always</updatePolicy>
409 <checksumPolicy>warn</checksumPolicy>
410 </releases>
411 <id>algebricks-releases</id>
412 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
413 </repository>
414 <repository>
415 <snapshots>
416 <enabled>true</enabled>
417 <updatePolicy>always</updatePolicy>
418 <checksumPolicy>fail</checksumPolicy>
419 </snapshots>
420 <id>algebricks-snapshots</id>
421 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
422 </repository>
423 </repositories>
424 <dependencyManagement>
425 <dependencies>
426 <dependency>
427 <groupId>junit</groupId>
428 <artifactId>junit</artifactId>
429 <version>${junit.version}</version>
430 </dependency>
431 <dependency>
432 <groupId>org.apache.maven</groupId>
433 <artifactId>maven-plugin-api</artifactId>
434 <version>2.2.1</version>
435 </dependency>
436 <dependency>
437 <groupId>org.apache.hadoop</groupId>
438 <artifactId>hadoop-yarn-common</artifactId>
439 <version>${hadoop.version}</version>
440 </dependency>
441 <dependency>
442 <groupId>org.apache.hadoop</groupId>
443 <artifactId>hadoop-yarn-client</artifactId>
444 <version>${hadoop.version}</version>
445 </dependency>
446 <dependency>
447 <groupId>org.apache.hadoop</groupId>
448 <artifactId>hadoop-client</artifactId>
449 <version>${hadoop.version}</version>
450 </dependency>
451 <dependency>
452 <groupId>org.apache.hadoop</groupId>
453 <artifactId>hadoop-hdfs</artifactId>
454 <version>${hadoop.version}</version>
455 </dependency>
456 <dependency>
457 <groupId>org.apache.hadoop</groupId>
458 <artifactId>hadoop-common</artifactId>
459 <version>${hadoop.version}</version>
460 </dependency>
461 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700462 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800463 <artifactId>algebricks-compiler</artifactId>
464 <version>${algebricks.version}</version>
465 </dependency>
466 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700467 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800468 <artifactId>hyracks-api</artifactId>
469 <version>${hyracks.version}</version>
470 </dependency>
471 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700472 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700473 <artifactId>hyracks-util</artifactId>
474 <version>${hyracks.version}</version>
475 </dependency>
476 <dependency>
477 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800478 <artifactId>hyracks-dataflow-std</artifactId>
479 <version>${hyracks.version}</version>
480 </dependency>
481 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700482 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700483 <artifactId>hyracks-data</artifactId>
484 <version>${hyracks.version}</version>
485 </dependency>
486 <dependency>
487 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800488 <artifactId>hyracks-control-cc</artifactId>
489 <version>${hyracks.version}</version>
490 </dependency>
491 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700492 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800493 <artifactId>hyracks-control-nc</artifactId>
494 <version>${hyracks.version}</version>
495 </dependency>
496 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700497 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800498 <artifactId>hyracks-server</artifactId>
499 <version>${hyracks.version}</version>
500 </dependency>
501 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700502 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800503 <artifactId>hyracks-cli</artifactId>
504 <version>${hyracks.version}</version>
505 </dependency>
506 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700507 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800508 <artifactId>hyracks-dataflow-hadoop</artifactId>
509 <version>${hyracks.version}</version>
510 </dependency>
511 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700512 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800513 <artifactId>hyracks-storage-am-btree</artifactId>
514 <version>${hyracks.version}</version>
515 </dependency>
516 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700517 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800518 <artifactId>hyracks-storage-am-rtree</artifactId>
519 <version>${hyracks.version}</version>
520 </dependency>
521 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700522 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700523 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800524 <version>${hyracks.version}</version>
525 </dependency>
526 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700527 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800528 <artifactId>hyracks-storage-am-common</artifactId>
529 <version>${hyracks.version}</version>
530 </dependency>
531 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700532 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000533 <artifactId>hyracks-client</artifactId>
534 <version>${hyracks.version}</version>
535 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800536 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700537 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800538 <artifactId>hyracks-storage-am-lsm-common</artifactId>
539 <version>${hyracks.version}</version>
540 </dependency>
541 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700542 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800543 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
544 <version>${hyracks.version}</version>
545 </dependency>
546 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700547 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800548 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
549 <version>${hyracks.version}</version>
550 </dependency>
551 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700552 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800553 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
554 <version>${hyracks.version}</version>
555 </dependency>
556 <dependency>
557 <groupId>org.json</groupId>
558 <artifactId>json</artifactId>
559 <version>${json.version}</version>
560 <type>jar</type>
561 </dependency>
562 <dependency>
563 <groupId>javax.servlet</groupId>
564 <artifactId>servlet-api</artifactId>
565 <version>${servlet.api.version}</version>
566 <type>jar</type>
567 </dependency>
568 <dependency>
569 <groupId>commons-io</groupId>
570 <artifactId>commons-io</artifactId>
571 <version>${commons.io.version}</version>
572 </dependency>
573 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000574 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000575</project>