blob: 3a6ff21725cc09308414e3affe20fa63265afbb2 [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 !-->
Eldon Carman0228b9c2014-11-25 18:13:46 -080020<project
21 xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
Ian Maxonf18bba22015-08-21 12:35:14 -070025 <groupId>org.apache.asterix</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080026 <artifactId>asterix</artifactId>
27 <version>0.8.7-SNAPSHOT</version>
28 <packaging>pom</packaging>
29
Ian Maxon5c058c62015-08-21 16:06:15 -070030 <parent>
31 <groupId>org.apache</groupId>
32 <artifactId>apache</artifactId>
33 <version>LATEST</version>
34 </parent>
35
Ian4a816dc2014-11-26 15:46:32 -080036 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070037 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 <distribution>repo</distribution>
41 <comments>A business-friendly OSS license</comments>
42 </license>
Ian4a816dc2014-11-26 15:46:32 -080043 </licenses>
44
Eldon Carman0228b9c2014-11-25 18:13:46 -080045 <properties>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47 <jvm.extraargs />
Ian Maxonba7b55f2015-10-14 10:49:07 -070048 <jdk.version>1.8</jdk.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080049 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080050
51 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080052 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
53 <metadata.tests>**/metadata/*Test.java</metadata.tests>
54 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070055 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080056 <invalid.tests>**/DmlTest.java</invalid.tests>
57 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070058 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070059 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ildar Absalyamov6ad223f2015-10-09 10:21:07 -070060 <algebricks.version>0.2.17-SNAPSHOT</algebricks.version>
61 <hyracks.version>0.2.17-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080062 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070063 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080064 <commons.io.version>2.4</commons.io.version>
65 <servlet.api.version>2.5</servlet.api.version>
66 <json.version>20090211</json.version>
67 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000068
Eldon Carman0228b9c2014-11-25 18:13:46 -080069 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080073 <artifactId>maven-surefire-plugin</artifactId>
74 <version>2.16</version>
75 <configuration>
76 <failIfNoTests>false</failIfNoTests>
77 <systemPropertyVariables>
78 <skipFredSlowTests>true</skipFredSlowTests>
79 </systemPropertyVariables>
80 <forkCount>1</forkCount>
81 <reuseForks>false</reuseForks>
82 <argLine>-enableassertions -Xmx${test.heap.size}m
83 -Dfile.encoding=UTF-8
84 -Djava.util.logging.config.file=${user.home}/logging.properties
85 -DrunSlowAQLTests=${runSlowAQLTests}
86 -Xdebug
87 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
88 <includes>
89 <include>${global.test.includes},${test.includes}</include>
90 </includes>
91 <excludes>
92 <exclude>${global.test.excludes},${test.excludes}</exclude>
93 </excludes>
94 </configuration>
95 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070096 <plugin>
97 <groupId>org.apache.rat</groupId>
98 <artifactId>apache-rat-plugin</artifactId>
99 <version>0.11</version>
100 <executions>
101 <execution>
102 <phase>verify</phase>
103 <goals>
104 <goal>check</goal>
105 </goals>
106 </execution>
107 </executions>
108 <configuration>
109 <excludeSubProjects>true</excludeSubProjects>
110 <licenses>
111 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
112 <licenseFamilyCategory>MIT</licenseFamilyCategory>
113 <licenseFamilyName>The MIT License</licenseFamilyName>
114 <notes>For JQuery MIT/GPL2 Dual License</notes>
115 <patterns>
116 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
117 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
118 <pattern>http://jquery.org/license</pattern>
119 <pattern>Dual licensed under the MIT</pattern>
120 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
121 </patterns>
122 </license>
123 </licenses>
124 <licenseFamilies>
125 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
126 <familyName>The MIT License</familyName>
127 </licenseFamily>
128 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
129 <familyName>Apache License Version 2.0</familyName>
130 </licenseFamily>
131 </licenseFamilies>
132 <excludes>
133 <exclude>**/*.adm</exclude>
134 <exclude>**/*.aql</exclude>
135 <exclude>**/*.csv</exclude>
136 <exclude>**/*.ddl</exclude>
137 <exclude>**/*.iml</exclude>
138 <exclude>**/*.out</exclude>
139 <exclude>**/*.tbl</exclude>
140 <exclude>**/*.tsv</exclude>
141 <exclude>**/*.txt</exclude>
142 <exclude>**/*.xsd</exclude>
143 </excludes>
144 <includes>
145 <include>**/asterix-*</include>
146 <include>**/*.java</include>
147 </includes>
148 </configuration>
149 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700150 <plugin>
151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <!-- We override the configuration plugin to override the descriptor to use for building
154 the source release zip. Specifically, we would like to control the inclusions/exclusions.
155 For example, we exclude the KEYS file from the zip -->
156 <executions>
157 <execution>
158 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
159 the apache parent POM under the apache-release profile -->
160 <id>source-release-assembly</id>
161 <phase>package</phase>
162 <goals>
163 <goal>single</goal>
164 </goals>
165 <!-- combine.self should be override to replace the configuration in the parent POM -->
166 <configuration combine.self="override">
167 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
168 <descriptors>
169 <descriptor>src/main/assembly/source.xml</descriptor>
170 </descriptors>
171 </configuration>
172 </execution>
173 </executions>
174 </plugin>
175 <plugin>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-compiler-plugin</artifactId>
178 <version>3.1</version>
179 <configuration>
180 <source>${jdk.version}</source>
181 <target>${jdk.version}</target>
182 <compilerArgument>-Xlint:all</compilerArgument>
183 </configuration>
184 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800185 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700186 <pluginManagement>
187 <plugins>
188 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
189 <plugin>
190 <groupId>org.eclipse.m2e</groupId>
191 <artifactId>lifecycle-mapping</artifactId>
192 <version>1.0.0</version>
193 <configuration>
194 <lifecycleMappingMetadata>
195 <pluginExecutions>
196 <pluginExecution>
197 <pluginExecutionFilter>
198 <groupId>org.apache.maven.plugins</groupId>
199 <artifactId>maven-plugin-plugin</artifactId>
200 <versionRange>[3.4,)</versionRange>
201 <goals>
202 <goal>descriptor</goal>
203 </goals>
204 </pluginExecutionFilter>
205 <action>
206 <ignore></ignore>
207 </action>
208 </pluginExecution>
209 <pluginExecution>
210 <pluginExecutionFilter>
211 <groupId>org.apache.asterix</groupId>
212 <artifactId>record-manager-generator-maven-plugin</artifactId>
213 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
214 <goals>
215 <goal>generate-record-manager</goal>
216 </goals>
217 </pluginExecutionFilter>
218 <action>
219 <ignore></ignore>
220 </action>
221 </pluginExecution>
222 <pluginExecution>
223 <pluginExecutionFilter>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-jar-plugin</artifactId>
226 <versionRange>[2.4,)</versionRange>
227 <goals>
228 <goal>test-jar</goal>
229 </goals>
230 </pluginExecutionFilter>
231 <action>
232 <ignore></ignore>
233 </action>
234 </pluginExecution>
235 </pluginExecutions>
236 </lifecycleMappingMetadata>
237 </configuration>
238 </plugin>
239 </plugins>
240 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800241 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000242
Eldon Carman0228b9c2014-11-25 18:13:46 -0800243 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700244 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
245 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
246 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000247
Ian Maxon5c058c62015-08-21 16:06:15 -0700248 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000249
250 <profiles>
251 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800252 <id>slow-aql-tests</id>
253 <properties>
254 <runSlowAQLTests>true</runSlowAQLTests>
255 </properties>
256 </profile>
257 <profile>
258 <id>optimizer-tests</id>
259 <properties>
260 <optimizer.tests />
261 </properties>
262 </profile>
263 <profile>
264 <id>metadata-tests</id>
265 <properties>
266 <metadata.tests />
267 </properties>
268 </profile>
269 <profile>
270 <id>execution-tests</id>
271 <properties>
272 <execution.tests />
273 </properties>
274 </profile>
275 <profile>
276 <id>invalid-tests</id>
277 <properties>
278 <invalid.tests />
279 </properties>
280 </profile>
281 <profile>
282 <id>32bitvm</id>
283 <activation>
284 <property>
285 <name>sun.arch.data.model</name>
286 <value>32</value>
287 </property>
288 </activation>
289 <properties>
290 <test.heap.size>2048</test.heap.size>
291 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000292 </profile>
293
294 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800295 <id>64bitvm</id>
296 <activation>
297 <property>
298 <name>sun.arch.data.model</name>
299 <value>64</value>
300 </property>
301 </activation>
302 <properties>
303 <test.heap.size>3072</test.heap.size>
304 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000305 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700306 <profile>
307 <id>asterix-release</id>
308 <build>
309 <plugins>
310 <plugin>
311 <groupId>org.apache.maven.plugins</groupId>
312 <artifactId>maven-assembly-plugin</artifactId>
313 <!-- We override the configuration plugin to override the descriptor to use for building
314 the source release zip. Specifically, we would like to control the inclusions/exclusions.
315 For example, we exclude the KEYS file from the zip -->
316 <executions>
317 <execution>
318 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
319 the apache parent POM under the apache-release profile -->
320 <id>source-release-assembly</id>
321 <phase>package</phase>
322 <goals>
323 <goal>single</goal>
324 </goals>
325 <!-- combine.self should be override to replace the configuration in the parent POM -->
326 <configuration combine.self="override">
327 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
328 <descriptors>
329 <descriptor>src/main/assembly/source.xml</descriptor>
330 </descriptors>
331 </configuration>
332 </execution>
333 </executions>
334 </plugin>
335 </plugins>
336 </build>
337 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700338 <profile>
339 <id>java6</id>
340 <activation>
341 <jdk>1.6</jdk>
342 </activation>
343 <properties>
344 <jdk.version>1.6</jdk.version>
345 </properties>
346 </profile>
347 <profile>
348 <id>java7</id>
349 <activation>
350 <jdk>1.7</jdk>
351 </activation>
352 <properties>
353 <jdk.version>1.7</jdk.version>
354 </properties>
355 </profile>
356 <profile>
357 <id>java8</id>
358 <activation>
359 <jdk>1.8</jdk>
360 </activation>
361 <properties>
362 <jdk.version>1.8</jdk.version>
363 </properties>
364 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000365 </profiles>
366
Eldon Carman0228b9c2014-11-25 18:13:46 -0800367 <modules>
368 <module>asterix-common</module>
369 <module>asterix-algebra</module>
370 <module>asterix-app</module>
371 <module>asterix-tools</module>
372 <module>asterix-transactions</module>
373 <module>asterix-runtime</module>
374 <module>asterix-om</module>
375 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700376 <module>asterix-external-data</module>
377 <module>asterix-examples</module>
378 <module>asterix-metadata</module>
379 <module>asterix-test-framework</module>
380 <module>asterix-maven-plugins</module>
381 <module>asterix-server</module>
382 <module>asterix-installer</module>
383 <module>asterix-events</module>
384 <module>asterix-doc</module>
385 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700386 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800387 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000388
Eldon Carman0228b9c2014-11-25 18:13:46 -0800389 <repositories>
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>asterix-public</id>
402 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
403 </repository>
404 <repository>
405 <releases>
406 <enabled>true</enabled>
407 <updatePolicy>always</updatePolicy>
408 <checksumPolicy>warn</checksumPolicy>
409 </releases>
410 <snapshots>
411 <enabled>true</enabled>
412 <updatePolicy>always</updatePolicy>
413 <checksumPolicy>fail</checksumPolicy>
414 </snapshots>
415 <id>third-party</id>
416 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
417 </repository>
418 <repository>
419 <releases>
420 <enabled>true</enabled>
421 <updatePolicy>always</updatePolicy>
422 <checksumPolicy>warn</checksumPolicy>
423 </releases>
424 <id>algebricks-releases</id>
425 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
426 </repository>
427 <repository>
428 <snapshots>
429 <enabled>true</enabled>
430 <updatePolicy>always</updatePolicy>
431 <checksumPolicy>fail</checksumPolicy>
432 </snapshots>
433 <id>algebricks-snapshots</id>
434 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
435 </repository>
436 </repositories>
437 <dependencyManagement>
438 <dependencies>
439 <dependency>
440 <groupId>junit</groupId>
441 <artifactId>junit</artifactId>
442 <version>${junit.version}</version>
443 </dependency>
444 <dependency>
445 <groupId>org.apache.maven</groupId>
446 <artifactId>maven-plugin-api</artifactId>
447 <version>2.2.1</version>
448 </dependency>
449 <dependency>
450 <groupId>org.apache.hadoop</groupId>
451 <artifactId>hadoop-yarn-common</artifactId>
452 <version>${hadoop.version}</version>
453 </dependency>
454 <dependency>
455 <groupId>org.apache.hadoop</groupId>
456 <artifactId>hadoop-yarn-client</artifactId>
457 <version>${hadoop.version}</version>
458 </dependency>
459 <dependency>
460 <groupId>org.apache.hadoop</groupId>
461 <artifactId>hadoop-client</artifactId>
462 <version>${hadoop.version}</version>
463 </dependency>
464 <dependency>
465 <groupId>org.apache.hadoop</groupId>
466 <artifactId>hadoop-hdfs</artifactId>
467 <version>${hadoop.version}</version>
468 </dependency>
469 <dependency>
470 <groupId>org.apache.hadoop</groupId>
471 <artifactId>hadoop-common</artifactId>
472 <version>${hadoop.version}</version>
473 </dependency>
474 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700475 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800476 <artifactId>algebricks-compiler</artifactId>
477 <version>${algebricks.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>hyracks-api</artifactId>
482 <version>${hyracks.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-dataflow-std</artifactId>
487 <version>${hyracks.version}</version>
488 </dependency>
489 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700490 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800491 <artifactId>hyracks-control-cc</artifactId>
492 <version>${hyracks.version}</version>
493 </dependency>
494 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700495 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800496 <artifactId>hyracks-control-nc</artifactId>
497 <version>${hyracks.version}</version>
498 </dependency>
499 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700500 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800501 <artifactId>hyracks-server</artifactId>
502 <version>${hyracks.version}</version>
503 </dependency>
504 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700505 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800506 <artifactId>hyracks-cli</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-dataflow-hadoop</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-storage-am-btree</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-storage-am-rtree</artifactId>
522 <version>${hyracks.version}</version>
523 </dependency>
524 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700525 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700526 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800527 <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-common</artifactId>
532 <version>${hyracks.version}</version>
533 </dependency>
534 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700535 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000536 <artifactId>hyracks-client</artifactId>
537 <version>${hyracks.version}</version>
538 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800539 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700540 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800541 <artifactId>hyracks-storage-am-lsm-common</artifactId>
542 <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-lsm-btree</artifactId>
547 <version>${hyracks.version}</version>
548 </dependency>
549 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700550 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800551 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
552 <version>${hyracks.version}</version>
553 </dependency>
554 <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-invertedindex</artifactId>
557 <version>${hyracks.version}</version>
558 </dependency>
559 <dependency>
560 <groupId>org.json</groupId>
561 <artifactId>json</artifactId>
562 <version>${json.version}</version>
563 <type>jar</type>
564 </dependency>
565 <dependency>
566 <groupId>javax.servlet</groupId>
567 <artifactId>servlet-api</artifactId>
568 <version>${servlet.api.version}</version>
569 <type>jar</type>
570 </dependency>
571 <dependency>
572 <groupId>commons-io</groupId>
573 <artifactId>commons-io</artifactId>
574 <version>${commons.io.version}</version>
575 </dependency>
576 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000577 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000578</project>