blob: 2bf4e4f2091f9e4c842dc67b96512bcb6b65b25c [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>
Michael Blowfc644822016-03-16 10:21:24 -040056
57 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ildar Absalyamov6ad223f2015-10-09 10:21:07 -070058 <algebricks.version>0.2.17-SNAPSHOT</algebricks.version>
59 <hyracks.version>0.2.17-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080060 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070061 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080062 <commons.io.version>2.4</commons.io.version>
63 <servlet.api.version>2.5</servlet.api.version>
64 <json.version>20090211</json.version>
Michael Blowfc644822016-03-16 10:21:24 -040065 <jacoco.version>0.7.6.201602180812</jacoco.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080066 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000067
Eldon Carman0228b9c2014-11-25 18:13:46 -080068 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080072 <artifactId>maven-surefire-plugin</artifactId>
73 <version>2.16</version>
74 <configuration>
75 <failIfNoTests>false</failIfNoTests>
76 <systemPropertyVariables>
77 <skipFredSlowTests>true</skipFredSlowTests>
78 </systemPropertyVariables>
79 <forkCount>1</forkCount>
80 <reuseForks>false</reuseForks>
Michael Blowfc644822016-03-16 10:21:24 -040081 <argLine>
82 -enableassertions -Xmx${test.heap.size}m
Eldon Carman0228b9c2014-11-25 18:13:46 -080083 -Dfile.encoding=UTF-8
84 -Djava.util.logging.config.file=${user.home}/logging.properties
85 -DrunSlowAQLTests=${runSlowAQLTests}
86 -Xdebug
Michael Blowfc644822016-03-16 10:21:24 -040087 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
88 ${coverageArgLine}
89 </argLine>
Eldon Carman0228b9c2014-11-25 18:13:46 -080090 <includes>
91 <include>${global.test.includes},${test.includes}</include>
92 </includes>
93 <excludes>
94 <exclude>${global.test.excludes},${test.excludes}</exclude>
95 </excludes>
96 </configuration>
97 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070098 <plugin>
99 <groupId>org.apache.rat</groupId>
100 <artifactId>apache-rat-plugin</artifactId>
101 <version>0.11</version>
102 <executions>
103 <execution>
104 <phase>verify</phase>
105 <goals>
106 <goal>check</goal>
107 </goals>
108 </execution>
109 </executions>
110 <configuration>
111 <excludeSubProjects>true</excludeSubProjects>
112 <licenses>
113 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
114 <licenseFamilyCategory>MIT</licenseFamilyCategory>
115 <licenseFamilyName>The MIT License</licenseFamilyName>
116 <notes>For JQuery MIT/GPL2 Dual License</notes>
117 <patterns>
118 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
119 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
120 <pattern>http://jquery.org/license</pattern>
121 <pattern>Dual licensed under the MIT</pattern>
122 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
123 </patterns>
124 </license>
125 </licenses>
126 <licenseFamilies>
127 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
128 <familyName>The MIT License</familyName>
129 </licenseFamily>
130 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
131 <familyName>Apache License Version 2.0</familyName>
132 </licenseFamily>
133 </licenseFamilies>
134 <excludes>
135 <exclude>**/*.adm</exclude>
136 <exclude>**/*.aql</exclude>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700137 <exclude>**/*.ast</exclude>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700138 <exclude>**/*.csv</exclude>
139 <exclude>**/*.ddl</exclude>
140 <exclude>**/*.iml</exclude>
141 <exclude>**/*.out</exclude>
142 <exclude>**/*.tbl</exclude>
143 <exclude>**/*.tsv</exclude>
144 <exclude>**/*.txt</exclude>
145 <exclude>**/*.xsd</exclude>
146 </excludes>
147 <includes>
148 <include>**/asterix-*</include>
149 <include>**/*.java</include>
150 </includes>
151 </configuration>
152 </plugin>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700155 <artifactId>maven-compiler-plugin</artifactId>
156 <version>3.1</version>
157 <configuration>
158 <source>${jdk.version}</source>
159 <target>${jdk.version}</target>
160 <compilerArgument>-Xlint:all</compilerArgument>
161 </configuration>
162 </plugin>
Ian Maxon6059af32015-10-28 21:58:01 -0700163 <plugin>
164 <groupId>pl.project13.maven</groupId>
165 <artifactId>git-commit-id-plugin</artifactId>
166 <version>2.2.0</version>
167 <executions>
168 <execution>
169 <goals>
170 <goal>revision</goal>
171 </goals>
172 </execution>
173 </executions>
174
175 <configuration>
176 <!--
177 If you'd like to tell the plugin where your .git directory is,
178 use this setting, otherwise we'll perform a search trying to
179 figure out the right directory. It's better to add it explicite IMHO.
180 -->
181 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
182 <!-- this is false by default, forces the plugin to generate the git.properties file -->
183 <generateGitPropertiesFile>true</generateGitPropertiesFile>
184
185 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
186 <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
187 </configuration>
188
189 </plugin>
190 <!-- END OF GIT COMMIT ID PLUGIN CONFIGURATION -->
Eldon Carman0228b9c2014-11-25 18:13:46 -0800191 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700192 <pluginManagement>
193 <plugins>
194 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
195 <plugin>
196 <groupId>org.eclipse.m2e</groupId>
197 <artifactId>lifecycle-mapping</artifactId>
198 <version>1.0.0</version>
199 <configuration>
200 <lifecycleMappingMetadata>
201 <pluginExecutions>
202 <pluginExecution>
203 <pluginExecutionFilter>
204 <groupId>org.apache.maven.plugins</groupId>
205 <artifactId>maven-plugin-plugin</artifactId>
206 <versionRange>[3.4,)</versionRange>
207 <goals>
208 <goal>descriptor</goal>
209 </goals>
210 </pluginExecutionFilter>
211 <action>
212 <ignore></ignore>
213 </action>
214 </pluginExecution>
215 <pluginExecution>
216 <pluginExecutionFilter>
217 <groupId>org.apache.asterix</groupId>
218 <artifactId>record-manager-generator-maven-plugin</artifactId>
219 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
220 <goals>
221 <goal>generate-record-manager</goal>
222 </goals>
223 </pluginExecutionFilter>
224 <action>
225 <ignore></ignore>
226 </action>
227 </pluginExecution>
228 <pluginExecution>
229 <pluginExecutionFilter>
230 <groupId>org.apache.maven.plugins</groupId>
231 <artifactId>maven-jar-plugin</artifactId>
232 <versionRange>[2.4,)</versionRange>
233 <goals>
234 <goal>test-jar</goal>
235 </goals>
236 </pluginExecutionFilter>
237 <action>
238 <ignore></ignore>
239 </action>
240 </pluginExecution>
241 </pluginExecutions>
242 </lifecycleMappingMetadata>
243 </configuration>
244 </plugin>
245 </plugins>
246 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800247 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000248
Eldon Carman0228b9c2014-11-25 18:13:46 -0800249 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700250 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
251 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
252 <url>https://github.com/apache/incubator-asterixdb</url>
Till Westmannf02e1be2016-03-11 08:34:26 -0800253 <tag>HEAD</tag>
254 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000255
256 <profiles>
257 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800258 <id>slow-aql-tests</id>
259 <properties>
260 <runSlowAQLTests>true</runSlowAQLTests>
261 </properties>
262 </profile>
263 <profile>
264 <id>optimizer-tests</id>
265 <properties>
266 <optimizer.tests />
267 </properties>
268 </profile>
269 <profile>
270 <id>metadata-tests</id>
271 <properties>
272 <metadata.tests />
273 </properties>
274 </profile>
275 <profile>
276 <id>execution-tests</id>
277 <properties>
278 <execution.tests />
279 </properties>
280 </profile>
281 <profile>
282 <id>invalid-tests</id>
283 <properties>
284 <invalid.tests />
285 </properties>
286 </profile>
287 <profile>
288 <id>32bitvm</id>
289 <activation>
290 <property>
291 <name>sun.arch.data.model</name>
292 <value>32</value>
293 </property>
294 </activation>
295 <properties>
296 <test.heap.size>2048</test.heap.size>
297 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000298 </profile>
299
300 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800301 <id>64bitvm</id>
302 <activation>
303 <property>
304 <name>sun.arch.data.model</name>
305 <value>64</value>
306 </property>
307 </activation>
308 <properties>
309 <test.heap.size>3072</test.heap.size>
310 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000311 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700312 <profile>
313 <id>asterix-release</id>
314 <build>
315 <plugins>
316 <plugin>
317 <groupId>org.apache.maven.plugins</groupId>
318 <artifactId>maven-assembly-plugin</artifactId>
319 <!-- We override the configuration plugin to override the descriptor to use for building
320 the source release zip. Specifically, we would like to control the inclusions/exclusions.
321 For example, we exclude the KEYS file from the zip -->
322 <executions>
323 <execution>
324 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
325 the apache parent POM under the apache-release profile -->
326 <id>source-release-assembly</id>
327 <phase>package</phase>
328 <goals>
329 <goal>single</goal>
330 </goals>
331 <!-- combine.self should be override to replace the configuration in the parent POM -->
332 <configuration combine.self="override">
333 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
334 <descriptors>
335 <descriptor>src/main/assembly/source.xml</descriptor>
336 </descriptors>
337 </configuration>
338 </execution>
339 </executions>
340 </plugin>
341 </plugins>
342 </build>
343 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700344 <profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700345 <id>java8</id>
346 <activation>
347 <jdk>1.8</jdk>
348 </activation>
349 <properties>
350 <jdk.version>1.8</jdk.version>
351 </properties>
352 </profile>
Michael Blowfc644822016-03-16 10:21:24 -0400353 <!-- Code Coverage -->
354 <profile>
355 <id>coverage</id>
356 <activation>
357 <property>
358 <name>coverage</name>
359 </property>
360 </activation>
361 <build>
362 <plugins>
363 <plugin>
364 <groupId>org.jacoco</groupId>
365 <artifactId>jacoco-maven-plugin</artifactId>
366 <version>${jacoco.version}</version>
367 <executions>
368 <execution>
369 <id>default-prepare-agent</id>
370 <goals>
371 <goal>prepare-agent</goal>
372 </goals>
373 <configuration>
374 <propertyName>coverageArgLine</propertyName>
375 </configuration>
376 </execution>
377 </executions>
378 </plugin>
379 </plugins>
380 </build>
381 <properties>
382 <coverage/>
383 </properties>
384 </profile>
385 <profile>
386 <id>no-coverage</id>
387 <activation>
388 <property>
389 <name>!coverage</name>
390 </property>
391 </activation>
392 <properties>
393 <coverageArgLine/>
394 </properties>
395 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000396 </profiles>
397
Eldon Carman0228b9c2014-11-25 18:13:46 -0800398 <modules>
399 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700400 <module>asterix-lang-common</module>
401 <module>asterix-lang-aql</module>
402 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800403 <module>asterix-algebra</module>
404 <module>asterix-app</module>
405 <module>asterix-tools</module>
406 <module>asterix-transactions</module>
407 <module>asterix-runtime</module>
408 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700409 <module>asterix-external-data</module>
410 <module>asterix-examples</module>
411 <module>asterix-metadata</module>
412 <module>asterix-test-framework</module>
413 <module>asterix-maven-plugins</module>
414 <module>asterix-server</module>
415 <module>asterix-installer</module>
416 <module>asterix-events</module>
417 <module>asterix-doc</module>
418 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700419 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800420 <module>asterix-replication</module>
Ian Maxona70fba52016-02-18 13:52:36 -0800421 <module>asterix-experiments</module>
Michael Blowfc644822016-03-16 10:21:24 -0400422 <module>asterix-coverage</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800423 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000424
Eldon Carman0228b9c2014-11-25 18:13:46 -0800425 <repositories>
426 <repository>
427 <releases>
428 <enabled>true</enabled>
429 <updatePolicy>always</updatePolicy>
430 <checksumPolicy>warn</checksumPolicy>
431 </releases>
432 <snapshots>
433 <enabled>true</enabled>
434 <updatePolicy>always</updatePolicy>
435 <checksumPolicy>fail</checksumPolicy>
436 </snapshots>
437 <id>asterix-public</id>
438 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
439 </repository>
440 <repository>
441 <releases>
442 <enabled>true</enabled>
443 <updatePolicy>always</updatePolicy>
444 <checksumPolicy>warn</checksumPolicy>
445 </releases>
446 <snapshots>
447 <enabled>true</enabled>
448 <updatePolicy>always</updatePolicy>
449 <checksumPolicy>fail</checksumPolicy>
450 </snapshots>
451 <id>third-party</id>
452 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
453 </repository>
454 <repository>
455 <releases>
456 <enabled>true</enabled>
457 <updatePolicy>always</updatePolicy>
458 <checksumPolicy>warn</checksumPolicy>
459 </releases>
460 <id>algebricks-releases</id>
461 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
462 </repository>
463 <repository>
464 <snapshots>
465 <enabled>true</enabled>
466 <updatePolicy>always</updatePolicy>
467 <checksumPolicy>fail</checksumPolicy>
468 </snapshots>
469 <id>algebricks-snapshots</id>
470 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
471 </repository>
472 </repositories>
473 <dependencyManagement>
474 <dependencies>
475 <dependency>
476 <groupId>junit</groupId>
477 <artifactId>junit</artifactId>
478 <version>${junit.version}</version>
479 </dependency>
480 <dependency>
481 <groupId>org.apache.maven</groupId>
482 <artifactId>maven-plugin-api</artifactId>
483 <version>2.2.1</version>
484 </dependency>
485 <dependency>
486 <groupId>org.apache.hadoop</groupId>
487 <artifactId>hadoop-yarn-common</artifactId>
488 <version>${hadoop.version}</version>
489 </dependency>
490 <dependency>
491 <groupId>org.apache.hadoop</groupId>
492 <artifactId>hadoop-yarn-client</artifactId>
493 <version>${hadoop.version}</version>
494 </dependency>
495 <dependency>
496 <groupId>org.apache.hadoop</groupId>
497 <artifactId>hadoop-client</artifactId>
498 <version>${hadoop.version}</version>
499 </dependency>
500 <dependency>
501 <groupId>org.apache.hadoop</groupId>
502 <artifactId>hadoop-hdfs</artifactId>
503 <version>${hadoop.version}</version>
504 </dependency>
505 <dependency>
506 <groupId>org.apache.hadoop</groupId>
507 <artifactId>hadoop-common</artifactId>
508 <version>${hadoop.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>algebricks-compiler</artifactId>
513 <version>${algebricks.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-api</artifactId>
518 <version>${hyracks.version}</version>
519 </dependency>
520 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700521 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700522 <artifactId>hyracks-util</artifactId>
523 <version>${hyracks.version}</version>
524 </dependency>
525 <dependency>
526 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800527 <artifactId>hyracks-dataflow-std</artifactId>
528 <version>${hyracks.version}</version>
529 </dependency>
530 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700531 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700532 <artifactId>hyracks-data</artifactId>
533 <version>${hyracks.version}</version>
534 </dependency>
535 <dependency>
536 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800537 <artifactId>hyracks-control-cc</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-control-nc</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-server</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-cli</artifactId>
553 <version>${hyracks.version}</version>
554 </dependency>
555 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700556 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800557 <artifactId>hyracks-dataflow-hadoop</artifactId>
558 <version>${hyracks.version}</version>
559 </dependency>
560 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700561 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800562 <artifactId>hyracks-storage-am-btree</artifactId>
563 <version>${hyracks.version}</version>
564 </dependency>
565 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700566 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800567 <artifactId>hyracks-storage-am-rtree</artifactId>
568 <version>${hyracks.version}</version>
569 </dependency>
570 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700571 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700572 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800573 <version>${hyracks.version}</version>
574 </dependency>
575 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700576 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800577 <artifactId>hyracks-storage-am-common</artifactId>
578 <version>${hyracks.version}</version>
579 </dependency>
580 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700581 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000582 <artifactId>hyracks-client</artifactId>
583 <version>${hyracks.version}</version>
584 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800585 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700586 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800587 <artifactId>hyracks-storage-am-lsm-common</artifactId>
588 <version>${hyracks.version}</version>
589 </dependency>
590 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700591 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800592 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
593 <version>${hyracks.version}</version>
594 </dependency>
595 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700596 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800597 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
598 <version>${hyracks.version}</version>
599 </dependency>
600 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700601 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800602 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
603 <version>${hyracks.version}</version>
604 </dependency>
605 <dependency>
606 <groupId>org.json</groupId>
607 <artifactId>json</artifactId>
608 <version>${json.version}</version>
609 <type>jar</type>
610 </dependency>
611 <dependency>
612 <groupId>javax.servlet</groupId>
613 <artifactId>servlet-api</artifactId>
614 <version>${servlet.api.version}</version>
615 <type>jar</type>
616 </dependency>
617 <dependency>
618 <groupId>commons-io</groupId>
619 <artifactId>commons-io</artifactId>
620 <version>${commons.io.version}</version>
621 </dependency>
622 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000623 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000624</project>