blob: 09cccb7ebb204d19e29fbfc37ae0fda4df908033 [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>
Ian Maxonab556d12016-02-02 18:18:05 -080023 <artifactId>apache-asterixdb</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-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>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080047 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080048
49 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080050 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
51 <metadata.tests>**/metadata/*Test.java</metadata.tests>
52 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070053 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080054 <invalid.tests>**/DmlTest.java</invalid.tests>
55 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070056 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070057 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ian Maxon3da9d062016-03-16 17:05:31 -070058 <algebricks.version>0.2.18-SNAPSHOT</algebricks.version>
59 <hyracks.version>0.2.18-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}
Ian Maxon3da9d062016-03-16 17:05:31 -070089 </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>
Ian Maxon6e5f18e2015-11-24 18:02:48 -0800190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-remote-resources-plugin</artifactId>
193 <executions>
194 <execution>
195 <goals>
196 <goal>process</goal>
197 </goals>
198 <configuration>
199 <appendedResourcesDirectory>${appendedResourcesDirectory}</appendedResourcesDirectory>
200 <resourceBundles>
201 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
202 <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle>
203 </resourceBundles>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
208 <plugin>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-resources-plugin</artifactId>
211 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800212 </plugins>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700213 <pluginManagement>
214 <plugins>
215 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
216 <plugin>
217 <groupId>org.eclipse.m2e</groupId>
218 <artifactId>lifecycle-mapping</artifactId>
219 <version>1.0.0</version>
220 <configuration>
221 <lifecycleMappingMetadata>
222 <pluginExecutions>
223 <pluginExecution>
224 <pluginExecutionFilter>
225 <groupId>org.apache.maven.plugins</groupId>
226 <artifactId>maven-plugin-plugin</artifactId>
227 <versionRange>[3.4,)</versionRange>
228 <goals>
229 <goal>descriptor</goal>
230 </goals>
231 </pluginExecutionFilter>
232 <action>
233 <ignore></ignore>
234 </action>
235 </pluginExecution>
236 <pluginExecution>
237 <pluginExecutionFilter>
238 <groupId>org.apache.asterix</groupId>
239 <artifactId>record-manager-generator-maven-plugin</artifactId>
240 <versionRange>[0.8.7-SNAPSHOT,)</versionRange>
241 <goals>
242 <goal>generate-record-manager</goal>
243 </goals>
244 </pluginExecutionFilter>
245 <action>
246 <ignore></ignore>
247 </action>
248 </pluginExecution>
249 <pluginExecution>
250 <pluginExecutionFilter>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-jar-plugin</artifactId>
253 <versionRange>[2.4,)</versionRange>
254 <goals>
255 <goal>test-jar</goal>
256 </goals>
257 </pluginExecutionFilter>
258 <action>
259 <ignore></ignore>
260 </action>
261 </pluginExecution>
Yingyi Bu248f2f22016-03-18 16:39:56 -0700262 <pluginExecution>
263 <pluginExecutionFilter>
264 <groupId>org.apache.rat</groupId>
265 <artifactId>apache-rat-plugin</artifactId>
266 <versionRange>[0.11,)</versionRange>
267 <goals>
268 <goal>check</goal>
269 </goals>
270 </pluginExecutionFilter>
271 <action>
272 <ignore></ignore>
273 </action>
274 </pluginExecution>
Ildar Absalyamov4bb94a82015-10-14 23:06:43 -0700275 </pluginExecutions>
276 </lifecycleMappingMetadata>
277 </configuration>
278 </plugin>
279 </plugins>
280 </pluginManagement>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800281 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000282
Eldon Carman0228b9c2014-11-25 18:13:46 -0800283 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700284 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
285 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
286 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000287
Ian Maxonc1889c02016-02-10 15:26:24 -0800288 <tag>HEAD</tag>
Ian Maxond2e1e892015-10-05 12:46:26 -0700289 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000290
291 <profiles>
292 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800293 <id>slow-aql-tests</id>
294 <properties>
295 <runSlowAQLTests>true</runSlowAQLTests>
296 </properties>
297 </profile>
298 <profile>
299 <id>optimizer-tests</id>
300 <properties>
301 <optimizer.tests />
302 </properties>
303 </profile>
304 <profile>
305 <id>metadata-tests</id>
306 <properties>
307 <metadata.tests />
308 </properties>
309 </profile>
310 <profile>
311 <id>execution-tests</id>
312 <properties>
313 <execution.tests />
314 </properties>
315 </profile>
316 <profile>
317 <id>invalid-tests</id>
318 <properties>
319 <invalid.tests />
320 </properties>
321 </profile>
322 <profile>
323 <id>32bitvm</id>
324 <activation>
325 <property>
326 <name>sun.arch.data.model</name>
327 <value>32</value>
328 </property>
329 </activation>
330 <properties>
331 <test.heap.size>2048</test.heap.size>
332 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000333 </profile>
334
335 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800336 <id>64bitvm</id>
337 <activation>
338 <property>
339 <name>sun.arch.data.model</name>
340 <value>64</value>
341 </property>
342 </activation>
343 <properties>
344 <test.heap.size>3072</test.heap.size>
345 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000346 </profile>
Chris Hillery79dfcfc2015-10-02 17:14:25 -0700347 <profile>
348 <id>asterix-release</id>
349 <build>
350 <plugins>
351 <plugin>
352 <groupId>org.apache.maven.plugins</groupId>
353 <artifactId>maven-assembly-plugin</artifactId>
354 <!-- We override the configuration plugin to override the descriptor to use for building
355 the source release zip. Specifically, we would like to control the inclusions/exclusions.
356 For example, we exclude the KEYS file from the zip -->
357 <executions>
358 <execution>
359 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
360 the apache parent POM under the apache-release profile -->
361 <id>source-release-assembly</id>
362 <phase>package</phase>
363 <goals>
364 <goal>single</goal>
365 </goals>
366 <!-- combine.self should be override to replace the configuration in the parent POM -->
367 <configuration combine.self="override">
368 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
369 <descriptors>
370 <descriptor>src/main/assembly/source.xml</descriptor>
371 </descriptors>
372 </configuration>
373 </execution>
374 </executions>
375 </plugin>
376 </plugins>
377 </build>
378 </profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700379 <profile>
Ian Maxonba7b55f2015-10-14 10:49:07 -0700380 <id>java8</id>
381 <activation>
382 <jdk>1.8</jdk>
383 </activation>
384 <properties>
385 <jdk.version>1.8</jdk.version>
386 </properties>
387 </profile>
Michael Blowfc644822016-03-16 10:21:24 -0400388 <profile>
389 <id>coverage</id>
390 <activation>
391 <property>
392 <name>coverage</name>
393 </property>
394 </activation>
395 <build>
396 <plugins>
397 <plugin>
398 <groupId>org.jacoco</groupId>
399 <artifactId>jacoco-maven-plugin</artifactId>
400 <version>${jacoco.version}</version>
401 <executions>
402 <execution>
403 <id>default-prepare-agent</id>
404 <goals>
405 <goal>prepare-agent</goal>
406 </goals>
407 <configuration>
408 <propertyName>coverageArgLine</propertyName>
409 </configuration>
410 </execution>
Michael Blow79821df2016-03-18 23:39:16 -0400411 <execution>
412 <id>default-prepare-agent-integration</id>
413 <goals>
414 <goal>prepare-agent-integration</goal>
415 </goals>
416 <configuration>
417 <propertyName>coverageArgLine</propertyName>
418 </configuration>
419 </execution>
Michael Blowfc644822016-03-16 10:21:24 -0400420 </executions>
421 </plugin>
422 </plugins>
423 </build>
424 <properties>
425 <coverage/>
426 </properties>
427 </profile>
428 <profile>
429 <id>no-coverage</id>
430 <activation>
431 <property>
432 <name>!coverage</name>
433 </property>
434 </activation>
435 <properties>
436 <coverageArgLine/>
437 </properties>
438 </profile>
Ian Maxonfd6a7bd2015-12-29 12:21:43 -0800439 <profile>
440 <id>doclint-java8-disable</id>
441 <activation>
442 <jdk>[1.8,)</jdk>
443 </activation>
444
445 <build>
446 <plugins>
447 <plugin>
448 <groupId>org.apache.maven.plugins</groupId>
449 <artifactId>maven-javadoc-plugin</artifactId>
450 <configuration>
451 <additionalparam>-Xdoclint:none</additionalparam>
452 </configuration>
453 </plugin>
454 </plugins>
455 </build>
456 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000457 </profiles>
458
Eldon Carman0228b9c2014-11-25 18:13:46 -0800459 <modules>
460 <module>asterix-common</module>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700461 <module>asterix-lang-common</module>
462 <module>asterix-lang-aql</module>
463 <module>asterix-lang-sqlpp</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800464 <module>asterix-algebra</module>
465 <module>asterix-app</module>
466 <module>asterix-tools</module>
467 <module>asterix-transactions</module>
468 <module>asterix-runtime</module>
469 <module>asterix-om</module>
zheilbron738005d2014-03-21 14:50:17 -0700470 <module>asterix-external-data</module>
471 <module>asterix-examples</module>
472 <module>asterix-metadata</module>
473 <module>asterix-test-framework</module>
474 <module>asterix-maven-plugins</module>
475 <module>asterix-server</module>
476 <module>asterix-installer</module>
477 <module>asterix-events</module>
478 <module>asterix-doc</module>
479 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700480 <module>asterix-yarn</module>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800481 <module>asterix-replication</module>
Ian Maxona70fba52016-02-18 13:52:36 -0800482 <module>asterix-experiments</module>
Michael Blowfc644822016-03-16 10:21:24 -0400483 <module>asterix-coverage</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800484 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000485
Eldon Carman0228b9c2014-11-25 18:13:46 -0800486 <repositories>
487 <repository>
488 <releases>
489 <enabled>true</enabled>
490 <updatePolicy>always</updatePolicy>
491 <checksumPolicy>warn</checksumPolicy>
492 </releases>
493 <snapshots>
494 <enabled>true</enabled>
495 <updatePolicy>always</updatePolicy>
496 <checksumPolicy>fail</checksumPolicy>
497 </snapshots>
498 <id>asterix-public</id>
499 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
500 </repository>
501 <repository>
502 <releases>
503 <enabled>true</enabled>
504 <updatePolicy>always</updatePolicy>
505 <checksumPolicy>warn</checksumPolicy>
506 </releases>
507 <snapshots>
508 <enabled>true</enabled>
509 <updatePolicy>always</updatePolicy>
510 <checksumPolicy>fail</checksumPolicy>
511 </snapshots>
512 <id>third-party</id>
513 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
514 </repository>
515 <repository>
516 <releases>
517 <enabled>true</enabled>
518 <updatePolicy>always</updatePolicy>
519 <checksumPolicy>warn</checksumPolicy>
520 </releases>
521 <id>algebricks-releases</id>
522 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
523 </repository>
524 <repository>
525 <snapshots>
526 <enabled>true</enabled>
527 <updatePolicy>always</updatePolicy>
528 <checksumPolicy>fail</checksumPolicy>
529 </snapshots>
530 <id>algebricks-snapshots</id>
531 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
532 </repository>
Ian Maxon73d42112015-12-23 16:49:25 -0800533 <repository>
534 <snapshots>
535 <enabled>true</enabled>
536 <updatePolicy>always</updatePolicy>
537 <checksumPolicy>fail</checksumPolicy>
538 </snapshots>
539 <id>apache-staging</id>
Ian Maxon8ee0b742016-02-10 15:08:43 -0800540 <url>https://repository.apache.org/content/repositories/orgapacheasterix-1019/</url>
Ian Maxon73d42112015-12-23 16:49:25 -0800541 </repository>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800542 </repositories>
543 <dependencyManagement>
544 <dependencies>
545 <dependency>
546 <groupId>junit</groupId>
547 <artifactId>junit</artifactId>
548 <version>${junit.version}</version>
549 </dependency>
550 <dependency>
551 <groupId>org.apache.maven</groupId>
552 <artifactId>maven-plugin-api</artifactId>
553 <version>2.2.1</version>
554 </dependency>
555 <dependency>
556 <groupId>org.apache.hadoop</groupId>
557 <artifactId>hadoop-yarn-common</artifactId>
558 <version>${hadoop.version}</version>
559 </dependency>
560 <dependency>
561 <groupId>org.apache.hadoop</groupId>
562 <artifactId>hadoop-yarn-client</artifactId>
563 <version>${hadoop.version}</version>
564 </dependency>
565 <dependency>
566 <groupId>org.apache.hadoop</groupId>
567 <artifactId>hadoop-client</artifactId>
568 <version>${hadoop.version}</version>
569 </dependency>
570 <dependency>
571 <groupId>org.apache.hadoop</groupId>
572 <artifactId>hadoop-hdfs</artifactId>
573 <version>${hadoop.version}</version>
574 </dependency>
575 <dependency>
576 <groupId>org.apache.hadoop</groupId>
577 <artifactId>hadoop-common</artifactId>
578 <version>${hadoop.version}</version>
579 </dependency>
580 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700581 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800582 <artifactId>algebricks-compiler</artifactId>
583 <version>${algebricks.version}</version>
584 </dependency>
585 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700586 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800587 <artifactId>hyracks-api</artifactId>
588 <version>${hyracks.version}</version>
589 </dependency>
590 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700591 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700592 <artifactId>hyracks-util</artifactId>
593 <version>${hyracks.version}</version>
594 </dependency>
595 <dependency>
596 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800597 <artifactId>hyracks-dataflow-std</artifactId>
598 <version>${hyracks.version}</version>
599 </dependency>
600 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700601 <groupId>org.apache.hyracks</groupId>
JavierJia742aba82015-10-28 18:21:50 -0700602 <artifactId>hyracks-data</artifactId>
603 <version>${hyracks.version}</version>
604 </dependency>
605 <dependency>
606 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800607 <artifactId>hyracks-control-cc</artifactId>
608 <version>${hyracks.version}</version>
609 </dependency>
610 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700611 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800612 <artifactId>hyracks-control-nc</artifactId>
613 <version>${hyracks.version}</version>
614 </dependency>
615 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700616 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800617 <artifactId>hyracks-server</artifactId>
618 <version>${hyracks.version}</version>
619 </dependency>
620 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700621 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800622 <artifactId>hyracks-cli</artifactId>
623 <version>${hyracks.version}</version>
624 </dependency>
625 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700626 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800627 <artifactId>hyracks-dataflow-hadoop</artifactId>
628 <version>${hyracks.version}</version>
629 </dependency>
630 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700631 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800632 <artifactId>hyracks-storage-am-btree</artifactId>
633 <version>${hyracks.version}</version>
634 </dependency>
635 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700636 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800637 <artifactId>hyracks-storage-am-rtree</artifactId>
638 <version>${hyracks.version}</version>
639 </dependency>
640 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700641 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700642 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800643 <version>${hyracks.version}</version>
644 </dependency>
645 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700646 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800647 <artifactId>hyracks-storage-am-common</artifactId>
648 <version>${hyracks.version}</version>
649 </dependency>
650 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700651 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000652 <artifactId>hyracks-client</artifactId>
653 <version>${hyracks.version}</version>
654 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800655 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700656 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800657 <artifactId>hyracks-storage-am-lsm-common</artifactId>
658 <version>${hyracks.version}</version>
659 </dependency>
660 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700661 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800662 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
663 <version>${hyracks.version}</version>
664 </dependency>
665 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700666 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800667 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
668 <version>${hyracks.version}</version>
669 </dependency>
670 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700671 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800672 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
673 <version>${hyracks.version}</version>
674 </dependency>
675 <dependency>
676 <groupId>org.json</groupId>
677 <artifactId>json</artifactId>
678 <version>${json.version}</version>
679 <type>jar</type>
680 </dependency>
681 <dependency>
682 <groupId>javax.servlet</groupId>
683 <artifactId>servlet-api</artifactId>
684 <version>${servlet.api.version}</version>
685 <type>jar</type>
686 </dependency>
687 <dependency>
688 <groupId>commons-io</groupId>
689 <artifactId>commons-io</artifactId>
690 <version>${commons.io.version}</version>
691 </dependency>
692 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000693 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000694</project>