blob: e69ae24b1db0eaab4eb0911be428c2e3e2137fad [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>
Till Westmannf02e1be2016-03-11 08:34:26 -0800248 <tag>HEAD</tag>
249 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000250
251 <profiles>
252 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800253 <id>slow-aql-tests</id>
254 <properties>
255 <runSlowAQLTests>true</runSlowAQLTests>
256 </properties>
257 </profile>
258 <profile>
259 <id>optimizer-tests</id>
260 <properties>
261 <optimizer.tests />
262 </properties>
263 </profile>
264 <profile>
265 <id>metadata-tests</id>
266 <properties>
267 <metadata.tests />
268 </properties>
269 </profile>
270 <profile>
271 <id>execution-tests</id>
272 <properties>
273 <execution.tests />
274 </properties>
275 </profile>
276 <profile>
277 <id>invalid-tests</id>
278 <properties>
279 <invalid.tests />
280 </properties>
281 </profile>
282 <profile>
283 <id>32bitvm</id>
284 <activation>
285 <property>
286 <name>sun.arch.data.model</name>
287 <value>32</value>
288 </property>
289 </activation>
290 <properties>
291 <test.heap.size>2048</test.heap.size>
292 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000293 </profile>
294
295 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800296 <id>64bitvm</id>
297 <activation>
298 <property>
299 <name>sun.arch.data.model</name>
300 <value>64</value>
301 </property>
302 </activation>
303 <properties>
304 <test.heap.size>3072</test.heap.size>
305 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000306 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700307 <profile>
308 <id>asterix-release</id>
309 <build>
310 <plugins>
311 <plugin>
312 <groupId>org.apache.maven.plugins</groupId>
313 <artifactId>maven-assembly-plugin</artifactId>
314 <!-- We override the configuration plugin to override the descriptor to use for building
315 the source release zip. Specifically, we would like to control the inclusions/exclusions.
316 For example, we exclude the KEYS file from the zip -->
317 <executions>
318 <execution>
319 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
320 the apache parent POM under the apache-release profile -->
321 <id>source-release-assembly</id>
322 <phase>package</phase>
323 <goals>
324 <goal>single</goal>
325 </goals>
326 <!-- combine.self should be override to replace the configuration in the parent POM -->
327 <configuration combine.self="override">
328 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
329 <descriptors>
330 <descriptor>src/main/assembly/source.xml</descriptor>
331 </descriptors>
332 </configuration>
333 </execution>
334 </executions>
335 </plugin>
336 </plugins>
337 </build>
338 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700339 <profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700340 <id>java8</id>
341 <activation>
342 <jdk>1.8</jdk>
343 </activation>
344 <properties>
345 <jdk.version>1.8</jdk.version>
346 </properties>
347 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000348 </profiles>
349
Eldon Carman0228b9c2014-11-25 18:13:46 -0800350 <modules>
351 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700352 <module>asterix-lang-common</module>
353 <module>asterix-lang-aql</module>
354 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800355 <module>asterix-algebra</module>
356 <module>asterix-app</module>
357 <module>asterix-tools</module>
358 <module>asterix-transactions</module>
359 <module>asterix-runtime</module>
360 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700361 <module>asterix-external-data</module>
362 <module>asterix-examples</module>
363 <module>asterix-metadata</module>
364 <module>asterix-test-framework</module>
365 <module>asterix-maven-plugins</module>
366 <module>asterix-server</module>
367 <module>asterix-installer</module>
368 <module>asterix-events</module>
369 <module>asterix-doc</module>
370 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700371 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800372 <module>asterix-replication</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800373 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000374
Eldon Carman0228b9c2014-11-25 18:13:46 -0800375 <repositories>
376 <repository>
377 <releases>
378 <enabled>true</enabled>
379 <updatePolicy>always</updatePolicy>
380 <checksumPolicy>warn</checksumPolicy>
381 </releases>
382 <snapshots>
383 <enabled>true</enabled>
384 <updatePolicy>always</updatePolicy>
385 <checksumPolicy>fail</checksumPolicy>
386 </snapshots>
387 <id>asterix-public</id>
388 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
389 </repository>
390 <repository>
391 <releases>
392 <enabled>true</enabled>
393 <updatePolicy>always</updatePolicy>
394 <checksumPolicy>warn</checksumPolicy>
395 </releases>
396 <snapshots>
397 <enabled>true</enabled>
398 <updatePolicy>always</updatePolicy>
399 <checksumPolicy>fail</checksumPolicy>
400 </snapshots>
401 <id>third-party</id>
402 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
403 </repository>
404 <repository>
405 <releases>
406 <enabled>true</enabled>
407 <updatePolicy>always</updatePolicy>
408 <checksumPolicy>warn</checksumPolicy>
409 </releases>
410 <id>algebricks-releases</id>
411 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
412 </repository>
413 <repository>
414 <snapshots>
415 <enabled>true</enabled>
416 <updatePolicy>always</updatePolicy>
417 <checksumPolicy>fail</checksumPolicy>
418 </snapshots>
419 <id>algebricks-snapshots</id>
420 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
421 </repository>
422 </repositories>
423 <dependencyManagement>
424 <dependencies>
425 <dependency>
426 <groupId>junit</groupId>
427 <artifactId>junit</artifactId>
428 <version>${junit.version}</version>
429 </dependency>
430 <dependency>
431 <groupId>org.apache.maven</groupId>
432 <artifactId>maven-plugin-api</artifactId>
433 <version>2.2.1</version>
434 </dependency>
435 <dependency>
436 <groupId>org.apache.hadoop</groupId>
437 <artifactId>hadoop-yarn-common</artifactId>
438 <version>${hadoop.version}</version>
439 </dependency>
440 <dependency>
441 <groupId>org.apache.hadoop</groupId>
442 <artifactId>hadoop-yarn-client</artifactId>
443 <version>${hadoop.version}</version>
444 </dependency>
445 <dependency>
446 <groupId>org.apache.hadoop</groupId>
447 <artifactId>hadoop-client</artifactId>
448 <version>${hadoop.version}</version>
449 </dependency>
450 <dependency>
451 <groupId>org.apache.hadoop</groupId>
452 <artifactId>hadoop-hdfs</artifactId>
453 <version>${hadoop.version}</version>
454 </dependency>
455 <dependency>
456 <groupId>org.apache.hadoop</groupId>
457 <artifactId>hadoop-common</artifactId>
458 <version>${hadoop.version}</version>
459 </dependency>
460 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700461 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800462 <artifactId>algebricks-compiler</artifactId>
463 <version>${algebricks.version}</version>
464 </dependency>
465 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700466 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800467 <artifactId>hyracks-api</artifactId>
468 <version>${hyracks.version}</version>
469 </dependency>
470 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700471 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700472 <artifactId>hyracks-util</artifactId>
473 <version>${hyracks.version}</version>
474 </dependency>
475 <dependency>
476 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800477 <artifactId>hyracks-dataflow-std</artifactId>
478 <version>${hyracks.version}</version>
479 </dependency>
480 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700481 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700482 <artifactId>hyracks-data</artifactId>
483 <version>${hyracks.version}</version>
484 </dependency>
485 <dependency>
486 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800487 <artifactId>hyracks-control-cc</artifactId>
488 <version>${hyracks.version}</version>
489 </dependency>
490 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700491 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800492 <artifactId>hyracks-control-nc</artifactId>
493 <version>${hyracks.version}</version>
494 </dependency>
495 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700496 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800497 <artifactId>hyracks-server</artifactId>
498 <version>${hyracks.version}</version>
499 </dependency>
500 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700501 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800502 <artifactId>hyracks-cli</artifactId>
503 <version>${hyracks.version}</version>
504 </dependency>
505 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700506 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800507 <artifactId>hyracks-dataflow-hadoop</artifactId>
508 <version>${hyracks.version}</version>
509 </dependency>
510 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700511 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800512 <artifactId>hyracks-storage-am-btree</artifactId>
513 <version>${hyracks.version}</version>
514 </dependency>
515 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700516 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800517 <artifactId>hyracks-storage-am-rtree</artifactId>
518 <version>${hyracks.version}</version>
519 </dependency>
520 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700521 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700522 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800523 <version>${hyracks.version}</version>
524 </dependency>
525 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700526 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800527 <artifactId>hyracks-storage-am-common</artifactId>
528 <version>${hyracks.version}</version>
529 </dependency>
530 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700531 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000532 <artifactId>hyracks-client</artifactId>
533 <version>${hyracks.version}</version>
534 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800535 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700536 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800537 <artifactId>hyracks-storage-am-lsm-common</artifactId>
538 <version>${hyracks.version}</version>
539 </dependency>
540 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700541 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800542 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
543 <version>${hyracks.version}</version>
544 </dependency>
545 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700546 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800547 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
548 <version>${hyracks.version}</version>
549 </dependency>
550 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700551 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800552 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
553 <version>${hyracks.version}</version>
554 </dependency>
555 <dependency>
556 <groupId>org.json</groupId>
557 <artifactId>json</artifactId>
558 <version>${json.version}</version>
559 <type>jar</type>
560 </dependency>
561 <dependency>
562 <groupId>javax.servlet</groupId>
563 <artifactId>servlet-api</artifactId>
564 <version>${servlet.api.version}</version>
565 <type>jar</type>
566 </dependency>
567 <dependency>
568 <groupId>commons-io</groupId>
569 <artifactId>commons-io</artifactId>
570 <version>${commons.io.version}</version>
571 </dependency>
572 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000573 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000574</project>