blob: 71c2b2ce1e5e44e65c70309d382ace24159e40d0 [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>
132 <exclude>**/*.csv</exclude>
133 <exclude>**/*.ddl</exclude>
134 <exclude>**/*.iml</exclude>
135 <exclude>**/*.out</exclude>
136 <exclude>**/*.tbl</exclude>
137 <exclude>**/*.tsv</exclude>
138 <exclude>**/*.txt</exclude>
139 <exclude>**/*.xsd</exclude>
140 </excludes>
141 <includes>
142 <include>**/asterix-*</include>
143 <include>**/*.java</include>
144 </includes>
145 </configuration>
146 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-assembly-plugin</artifactId>
150 <!-- We override the configuration plugin to override the descriptor to use for building
151 the source release zip. Specifically, we would like to control the inclusions/exclusions.
152 For example, we exclude the KEYS file from the zip -->
153 <executions>
154 <execution>
155 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
156 the apache parent POM under the apache-release profile -->
157 <id>source-release-assembly</id>
158 <phase>package</phase>
159 <goals>
160 <goal>single</goal>
161 </goals>
162 <!-- combine.self should be override to replace the configuration in the parent POM -->
163 <configuration combine.self="override">
164 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
165 <descriptors>
166 <descriptor>src/main/assembly/source.xml</descriptor>
167 </descriptors>
168 </configuration>
169 </execution>
170 </executions>
171 </plugin>
172 <plugin>
173 <groupId>org.apache.maven.plugins</groupId>
174 <artifactId>maven-compiler-plugin</artifactId>
175 <version>3.1</version>
176 <configuration>
177 <source>${jdk.version}</source>
178 <target>${jdk.version}</target>
179 <compilerArgument>-Xlint:all</compilerArgument>
180 </configuration>
181 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800182 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700183 <pluginManagement>
184 <plugins>
185 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
186 <plugin>
187 <groupId>org.eclipse.m2e</groupId>
188 <artifactId>lifecycle-mapping</artifactId>
189 <version>1.0.0</version>
190 <configuration>
191 <lifecycleMappingMetadata>
192 <pluginExecutions>
193 <pluginExecution>
194 <pluginExecutionFilter>
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-plugin-plugin</artifactId>
197 <versionRange>[3.4,)</versionRange>
198 <goals>
199 <goal>descriptor</goal>
200 </goals>
201 </pluginExecutionFilter>
202 <action>
203 <ignore></ignore>
204 </action>
205 </pluginExecution>
206 <pluginExecution>
207 <pluginExecutionFilter>
208 <groupId>org.apache.asterix</groupId>
209 <artifactId>record-manager-generator-maven-plugin</artifactId>
210 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
211 <goals>
212 <goal>generate-record-manager</goal>
213 </goals>
214 </pluginExecutionFilter>
215 <action>
216 <ignore></ignore>
217 </action>
218 </pluginExecution>
219 <pluginExecution>
220 <pluginExecutionFilter>
221 <groupId>org.apache.maven.plugins</groupId>
222 <artifactId>maven-jar-plugin</artifactId>
223 <versionRange>[2.4,)</versionRange>
224 <goals>
225 <goal>test-jar</goal>
226 </goals>
227 </pluginExecutionFilter>
228 <action>
229 <ignore></ignore>
230 </action>
231 </pluginExecution>
232 </pluginExecutions>
233 </lifecycleMappingMetadata>
234 </configuration>
235 </plugin>
236 </plugins>
237 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800238 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000239
Eldon Carman0228b9c2014-11-25 18:13:46 -0800240 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700241 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
242 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
243 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000244
Ian Maxon4e6a9232015-10-05 12:46:37 -0700245 <tag>HEAD</tag>
Ian Maxond2e1e892015-10-05 12:46:26 -0700246 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000247
248 <profiles>
249 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800250 <id>slow-aql-tests</id>
251 <properties>
252 <runSlowAQLTests>true</runSlowAQLTests>
253 </properties>
254 </profile>
255 <profile>
256 <id>optimizer-tests</id>
257 <properties>
258 <optimizer.tests />
259 </properties>
260 </profile>
261 <profile>
262 <id>metadata-tests</id>
263 <properties>
264 <metadata.tests />
265 </properties>
266 </profile>
267 <profile>
268 <id>execution-tests</id>
269 <properties>
270 <execution.tests />
271 </properties>
272 </profile>
273 <profile>
274 <id>invalid-tests</id>
275 <properties>
276 <invalid.tests />
277 </properties>
278 </profile>
279 <profile>
280 <id>32bitvm</id>
281 <activation>
282 <property>
283 <name>sun.arch.data.model</name>
284 <value>32</value>
285 </property>
286 </activation>
287 <properties>
288 <test.heap.size>2048</test.heap.size>
289 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000290 </profile>
291
292 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800293 <id>64bitvm</id>
294 <activation>
295 <property>
296 <name>sun.arch.data.model</name>
297 <value>64</value>
298 </property>
299 </activation>
300 <properties>
301 <test.heap.size>3072</test.heap.size>
302 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000303 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700304 <profile>
305 <id>asterix-release</id>
306 <build>
307 <plugins>
308 <plugin>
309 <groupId>org.apache.maven.plugins</groupId>
310 <artifactId>maven-assembly-plugin</artifactId>
311 <!-- We override the configuration plugin to override the descriptor to use for building
312 the source release zip. Specifically, we would like to control the inclusions/exclusions.
313 For example, we exclude the KEYS file from the zip -->
314 <executions>
315 <execution>
316 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
317 the apache parent POM under the apache-release profile -->
318 <id>source-release-assembly</id>
319 <phase>package</phase>
320 <goals>
321 <goal>single</goal>
322 </goals>
323 <!-- combine.self should be override to replace the configuration in the parent POM -->
324 <configuration combine.self="override">
325 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
326 <descriptors>
327 <descriptor>src/main/assembly/source.xml</descriptor>
328 </descriptors>
329 </configuration>
330 </execution>
331 </executions>
332 </plugin>
333 </plugins>
334 </build>
335 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700336 <profile>
337 <id>java6</id>
338 <activation>
339 <jdk>1.6</jdk>
340 </activation>
341 <properties>
342 <jdk.version>1.6</jdk.version>
343 </properties>
344 </profile>
345 <profile>
346 <id>java7</id>
347 <activation>
348 <jdk>1.7</jdk>
349 </activation>
350 <properties>
351 <jdk.version>1.7</jdk.version>
352 </properties>
353 </profile>
354 <profile>
355 <id>java8</id>
356 <activation>
357 <jdk>1.8</jdk>
358 </activation>
359 <properties>
360 <jdk.version>1.8</jdk.version>
361 </properties>
362 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000363 </profiles>
364
Eldon Carman0228b9c2014-11-25 18:13:46 -0800365 <modules>
366 <module>asterix-common</module>
367 <module>asterix-algebra</module>
368 <module>asterix-app</module>
369 <module>asterix-tools</module>
370 <module>asterix-transactions</module>
371 <module>asterix-runtime</module>
372 <module>asterix-om</module>
373 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700374 <module>asterix-external-data</module>
375 <module>asterix-examples</module>
376 <module>asterix-metadata</module>
377 <module>asterix-test-framework</module>
378 <module>asterix-maven-plugins</module>
379 <module>asterix-server</module>
380 <module>asterix-installer</module>
381 <module>asterix-events</module>
382 <module>asterix-doc</module>
383 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700384 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800385 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000386
Eldon Carman0228b9c2014-11-25 18:13:46 -0800387 <repositories>
388 <repository>
389 <releases>
390 <enabled>true</enabled>
391 <updatePolicy>always</updatePolicy>
392 <checksumPolicy>warn</checksumPolicy>
393 </releases>
394 <snapshots>
395 <enabled>true</enabled>
396 <updatePolicy>always</updatePolicy>
397 <checksumPolicy>fail</checksumPolicy>
398 </snapshots>
399 <id>asterix-public</id>
400 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
401 </repository>
402 <repository>
403 <releases>
404 <enabled>true</enabled>
405 <updatePolicy>always</updatePolicy>
406 <checksumPolicy>warn</checksumPolicy>
407 </releases>
408 <snapshots>
409 <enabled>true</enabled>
410 <updatePolicy>always</updatePolicy>
411 <checksumPolicy>fail</checksumPolicy>
412 </snapshots>
413 <id>third-party</id>
414 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
415 </repository>
416 <repository>
417 <releases>
418 <enabled>true</enabled>
419 <updatePolicy>always</updatePolicy>
420 <checksumPolicy>warn</checksumPolicy>
421 </releases>
422 <id>algebricks-releases</id>
423 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
424 </repository>
425 <repository>
426 <snapshots>
427 <enabled>true</enabled>
428 <updatePolicy>always</updatePolicy>
429 <checksumPolicy>fail</checksumPolicy>
430 </snapshots>
431 <id>algebricks-snapshots</id>
432 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
433 </repository>
434 </repositories>
435 <dependencyManagement>
436 <dependencies>
437 <dependency>
438 <groupId>junit</groupId>
439 <artifactId>junit</artifactId>
440 <version>${junit.version}</version>
441 </dependency>
442 <dependency>
443 <groupId>org.apache.maven</groupId>
444 <artifactId>maven-plugin-api</artifactId>
445 <version>2.2.1</version>
446 </dependency>
447 <dependency>
448 <groupId>org.apache.hadoop</groupId>
449 <artifactId>hadoop-yarn-common</artifactId>
450 <version>${hadoop.version}</version>
451 </dependency>
452 <dependency>
453 <groupId>org.apache.hadoop</groupId>
454 <artifactId>hadoop-yarn-client</artifactId>
455 <version>${hadoop.version}</version>
456 </dependency>
457 <dependency>
458 <groupId>org.apache.hadoop</groupId>
459 <artifactId>hadoop-client</artifactId>
460 <version>${hadoop.version}</version>
461 </dependency>
462 <dependency>
463 <groupId>org.apache.hadoop</groupId>
464 <artifactId>hadoop-hdfs</artifactId>
465 <version>${hadoop.version}</version>
466 </dependency>
467 <dependency>
468 <groupId>org.apache.hadoop</groupId>
469 <artifactId>hadoop-common</artifactId>
470 <version>${hadoop.version}</version>
471 </dependency>
472 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700473 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800474 <artifactId>algebricks-compiler</artifactId>
475 <version>${algebricks.version}</version>
476 </dependency>
477 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700478 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800479 <artifactId>hyracks-api</artifactId>
480 <version>${hyracks.version}</version>
481 </dependency>
482 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700483 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800484 <artifactId>hyracks-dataflow-std</artifactId>
485 <version>${hyracks.version}</version>
486 </dependency>
487 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700488 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800489 <artifactId>hyracks-control-cc</artifactId>
490 <version>${hyracks.version}</version>
491 </dependency>
492 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700493 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800494 <artifactId>hyracks-control-nc</artifactId>
495 <version>${hyracks.version}</version>
496 </dependency>
497 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700498 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800499 <artifactId>hyracks-server</artifactId>
500 <version>${hyracks.version}</version>
501 </dependency>
502 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700503 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800504 <artifactId>hyracks-cli</artifactId>
505 <version>${hyracks.version}</version>
506 </dependency>
507 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700508 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800509 <artifactId>hyracks-dataflow-hadoop</artifactId>
510 <version>${hyracks.version}</version>
511 </dependency>
512 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700513 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800514 <artifactId>hyracks-storage-am-btree</artifactId>
515 <version>${hyracks.version}</version>
516 </dependency>
517 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700518 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800519 <artifactId>hyracks-storage-am-rtree</artifactId>
520 <version>${hyracks.version}</version>
521 </dependency>
522 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700523 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700524 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800525 <version>${hyracks.version}</version>
526 </dependency>
527 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700528 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800529 <artifactId>hyracks-storage-am-common</artifactId>
530 <version>${hyracks.version}</version>
531 </dependency>
532 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700533 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000534 <artifactId>hyracks-client</artifactId>
535 <version>${hyracks.version}</version>
536 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800537 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700538 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800539 <artifactId>hyracks-storage-am-lsm-common</artifactId>
540 <version>${hyracks.version}</version>
541 </dependency>
542 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700543 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800544 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
545 <version>${hyracks.version}</version>
546 </dependency>
547 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700548 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800549 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
550 <version>${hyracks.version}</version>
551 </dependency>
552 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700553 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800554 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
555 <version>${hyracks.version}</version>
556 </dependency>
557 <dependency>
558 <groupId>org.json</groupId>
559 <artifactId>json</artifactId>
560 <version>${json.version}</version>
561 <type>jar</type>
562 </dependency>
563 <dependency>
564 <groupId>javax.servlet</groupId>
565 <artifactId>servlet-api</artifactId>
566 <version>${servlet.api.version}</version>
567 <type>jar</type>
568 </dependency>
569 <dependency>
570 <groupId>commons-io</groupId>
571 <artifactId>commons-io</artifactId>
572 <version>${commons.io.version}</version>
573 </dependency>
574 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000575 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000576</project>