blob: 48ff14521f335482b5e4b0e85d72ad34a054f0b5 [file] [log] [blame]
Michael Blow2da62dc2016-06-30 21:18:37 -04001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070019<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/xsd/maven-4.0.0.xsd">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070024 <version>0.9.3-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
26 <artifactId>asterix-app</artifactId>
27 <licenses>
28 <license>
29 <name>Apache License, Version 2.0</name>
30 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31 <distribution>repo</distribution>
32 <comments>A business-friendly OSS license</comments>
33 </license>
34 </licenses>
Michael Blowb4c1fb02016-05-09 15:41:00 -070035 <properties>
36 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
Michael Blow98526fe2016-08-22 19:54:07 -040037 <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-jar-plugin</artifactId>
44 <executions>
45 <execution>
46 <goals>
Michael Blowb4c1fb02016-05-09 15:41:00 -070047 <goal>test-jar</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
Michael Blowa98d0de2016-05-11 16:22:52 -070053 <groupId>pl.project13.maven</groupId>
54 <artifactId>git-commit-id-plugin</artifactId>
55 <version>2.2.0</version>
56 <executions>
57 <execution>
58 <goals>
59 <goal>revision</goal>
60 </goals>
61 </execution>
62 </executions>
Michael Blowa98d0de2016-05-11 16:22:52 -070063 <configuration>
64 <!--
65 If you'd like to tell the plugin where your .git directory is,
66 use this setting, otherwise we'll perform a search trying to
67 figure out the right directory. It's better to add it explicite IMHO.
68 -->
69 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
70 <!-- this is false by default, forces the plugin to generate the git.properties file -->
71 <generateGitPropertiesFile>true</generateGitPropertiesFile>
72
73 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
74 <generateGitPropertiesFilename>./target/classes/git.properties</generateGitPropertiesFilename>
Michael Blowe2cf4912017-01-18 15:39:40 -050075
76 <!-- there is no .git directory when building from a source assembly- a static git.properties file (generated
77 at source assembly time) is used in this case -->
78 <failOnNoGitDirectory>false</failOnNoGitDirectory>
Michael Blowa98d0de2016-05-11 16:22:52 -070079 </configuration>
Michael Blowa98d0de2016-05-11 16:22:52 -070080 </plugin>
81 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 <artifactId>maven-resources-plugin</artifactId>
83 <executions>
84 <execution>
Ildar Absalyamovd195de12016-12-06 23:09:20 -080085 <id>copy-external-data-resources</id>
Michael Blowb4c1fb02016-05-09 15:41:00 -070086 <phase>generate-resources</phase>
87 <goals>
88 <goal>copy-resources</goal>
89 </goals>
90 <configuration>
91 <outputDirectory>target/data/csv</outputDirectory>
92 <overwrite>true</overwrite>
93 <resources>
94 <resource>
95 <directory>../asterix-external-data/src/test/resources</directory>
96 <includes>
Ildar Absalyamovd195de12016-12-06 23:09:20 -080097 <include>change_feed.csv</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -070098 </includes>
99 </resource>
100 </resources>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
Michael Blowe5bff312016-05-16 17:51:02 -0700105 <plugin>
106 <groupId>org.apache.asterix</groupId>
107 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400108 <version>${project.version}</version>
Michael Blowe5bff312016-05-16 17:51:02 -0700109 <executions>
110 <execution>
111 <id>replace-template-data</id>
112 <phase>process-test-resources</phase>
113 <goals>
114 <goal>generate-testdata</goal>
115 </goals>
116 <configuration>
117 <inputFiles>
118 <directory>data</directory>
119 <includes>
120 <include>**/*.template</include>
121 </includes>
122 </inputFiles>
123 <outputDir>target/data</outputDir>
124 </configuration>
125 </execution>
126 </executions>
127 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow82464fb2017-03-28 18:48:13 -0400131 <executions>
132 <execution>
133 <id>copy-external-testlib</id>
134 <phase>pre-integration-test</phase>
135 <goals>
136 <goal>copy-dependencies</goal>
137 </goals>
138 <configuration>
139 <includeClassifiers>testlib</includeClassifiers>
140 <outputDirectory>target/data/externallib</outputDirectory>
141 <overwrite>true</overwrite>
142 <stripVersion>true</stripVersion>
143 </configuration>
144 </execution>
145 </executions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500146 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500147 <ignoredUsedUndeclaredDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500148 <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency>
149 <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency>
150 </ignoredUsedUndeclaredDependencies>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500151 <usedDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500152 <usedDependency>org.apache.hadoop:hadoop-common</usedDependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500153 </usedDependencies>
Michael Blow82464fb2017-03-28 18:48:13 -0400154 <ignoredUnusedDeclaredDependencies>
155 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency>
Michael Blowc07a3442017-04-11 19:46:33 -0400156 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency>
Michael Blow82464fb2017-03-28 18:48:13 -0400157 </ignoredUnusedDeclaredDependencies>
Michael Blow599ef8f2017-01-12 11:02:53 -0500158 </configuration>
159 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400160 <plugin>
161 <groupId>org.apache.rat</groupId>
162 <artifactId>apache-rat-plugin</artifactId>
163 <executions>
164 <execution>
165 <id>default</id>
166 <phase>validate</phase>
167 <goals>
168 <goal>check</goal>
169 </goals>
170 <configuration>
171 <licenses combine.children="append">
172 <license implementation="org.apache.rat.analysis.license.MITLicense"/>
173 </licenses>
174 <excludes combine.children="append">
175 <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude>
176 <exclude>src/test/resources/**/results/**</exclude>
177 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude>
178 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude>
179 <exclude>data/**</exclude>
180 <exclude>src/main/resources/queryui/**</exclude>
181 <exclude>src/main/resources/webui/**</exclude>
182 <exclude>src/test/resources/**/only*.xml</exclude>
183 </excludes>
184 </configuration>
185 </execution>
186 <execution>
187 <id>webqueryui</id>
188 <phase>validate</phase>
189 <goals>
190 <goal>check</goal>
191 </goals>
192 <configuration>
193 <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile>
194 <licenses combine.children="append">
195 <license implementation="org.apache.rat.analysis.license.MITLicense"/>
196 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
197 <licenseFamilyCategory>MIT</licenseFamilyCategory>
198 <licenseFamilyName>JQuery</licenseFamilyName>
199 <patterns>(c) jQuery Foundation | jquery.org/license</patterns>
200 </license>
201 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
202 <licenseFamilyCategory>MIT</licenseFamilyCategory>
203 <licenseFamilyName>Bootstrap</licenseFamilyName>
204 <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns>
205 </license>
206 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
207 <licenseFamilyCategory>MIT</licenseFamilyCategory>
208 <licenseFamilyName>AngularJS</licenseFamilyName>
209 <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns>
210 </license>
211 </licenses>
212 <licenseFamilies combine.children="append">
213 <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily"/>
214 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
215 <familyName>JQuery</familyName>
216 </licenseFamily>
217 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
218 <familyName>Bootstrap</familyName>
219 </licenseFamily>
220 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
221 <familyName>AngularJS</familyName>
222 </licenseFamily>
223 </licenseFamilies>
224 <includes>
225 <include>src/main/resources/queryui/**</include>
226 <include>src/main/resources/webui/**</include>
227 </includes>
228 <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes>
229 </configuration>
230 </execution>
231 </executions>
232 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700233 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400234 <pluginManagement>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800235 <plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400236 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800237 <plugin>
238 <groupId>org.eclipse.m2e</groupId>
239 <artifactId>lifecycle-mapping</artifactId>
240 <version>1.0.0</version>
241 <configuration>
242 <lifecycleMappingMetadata>
243 <pluginExecutions>
244 <pluginExecution>
245 <pluginExecutionFilter>
246 <groupId>org.apache.asterix</groupId>
247 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
248 <versionRange>[0.8.9-SNAPSHOT,)</versionRange>
249 <goals>
250 <goal>generate-testdata</goal>
251 </goals>
252 </pluginExecutionFilter>
253 <action>
254 <ignore />
255 </action>
256 </pluginExecution>
257 </pluginExecutions>
258 </lifecycleMappingMetadata>
259 </configuration>
260 </plugin>
261 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400262 </pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700263 </build>
Michael Blow89328a82017-03-14 00:06:01 -0400264 <profiles>
265 <profile>
266 <id>skip.asterix-app.tests</id>
267 <build>
268 <plugins>
269 <plugin>
270 <groupId>org.apache.maven.plugins</groupId>
271 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow89328a82017-03-14 00:06:01 -0400272 <configuration>
273 <skip>true</skip>
274 </configuration>
275 </plugin>
276 </plugins>
277 </build>
278 </profile>
279 </profiles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700280 <dependencies>
281 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700282 <groupId>org.apache.hyracks</groupId>
283 <artifactId>hyracks-control-cc</artifactId>
284 </dependency>
285 <dependency>
286 <groupId>org.apache.hyracks</groupId>
287 <artifactId>hyracks-control-nc</artifactId>
288 </dependency>
289 <dependency>
290 <groupId>org.apache.hyracks</groupId>
291 <artifactId>algebricks-compiler</artifactId>
292 </dependency>
293 <dependency>
294 <groupId>org.apache.hyracks</groupId>
295 <artifactId>hyracks-client</artifactId>
296 </dependency>
297 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700298 <groupId>org.apache.hyracks</groupId>
299 <artifactId>hyracks-api</artifactId>
300 </dependency>
301 <dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800302 <groupId>org.apache.hyracks</groupId>
303 <artifactId>hyracks-http</artifactId>
304 </dependency>
305 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700306 <groupId>org.apache.asterix</groupId>
307 <artifactId>asterix-algebra</artifactId>
308 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700309 </dependency>
310 <dependency>
311 <groupId>org.apache.asterix</groupId>
312 <artifactId>asterix-om</artifactId>
313 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700314 </dependency>
315 <dependency>
316 <groupId>org.apache.asterix</groupId>
317 <artifactId>asterix-metadata</artifactId>
318 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700319 </dependency>
320 <dependency>
321 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700322 <artifactId>asterix-common</artifactId>
323 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700324 </dependency>
325 <dependency>
326 <groupId>org.apache.asterix</groupId>
327 <artifactId>asterix-common</artifactId>
328 <version>${project.version}</version>
329 <type>test-jar</type>
330 <scope>test</scope>
331 </dependency>
332 <dependency>
333 <groupId>org.apache.asterix</groupId>
334 <artifactId>asterix-transactions</artifactId>
335 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700336 </dependency>
337 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700338 <groupId>org.apache.asterix</groupId>
339 <artifactId>asterix-test-framework</artifactId>
340 <version>${project.version}</version>
341 <scope>test</scope>
342 </dependency>
343 <dependency>
344 <groupId>org.mockito</groupId>
345 <artifactId>mockito-all</artifactId>
346 <version>1.10.19</version>
347 <scope>test</scope>
348 </dependency>
349 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700350 <groupId>org.apache.asterix</groupId>
351 <artifactId>asterix-replication</artifactId>
352 <version>${project.version}</version>
Michael Blow599ef8f2017-01-12 11:02:53 -0500353 </dependency>
354 <dependency>
355 <groupId>org.apache.asterix</groupId>
356 <artifactId>asterix-external-data</artifactId>
357 <version>${project.version}</version>
358 <type>test-jar</type>
359 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700360 </dependency>
361 <dependency>
362 <groupId>org.apache.asterix</groupId>
363 <artifactId>asterix-external-data</artifactId>
364 <version>${project.version}</version>
Michael Blow82464fb2017-03-28 18:48:13 -0400365 <type>zip</type>
366 <classifier>testlib</classifier>
367 <scope>test</scope>
368 </dependency>
369 <dependency>
370 <groupId>org.apache.asterix</groupId>
371 <artifactId>asterix-external-data</artifactId>
372 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700373 </dependency>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700374 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400375 <groupId>org.apache.hyracks</groupId>
376 <artifactId>hyracks-test-support</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400377 <scope>test</scope>
378 </dependency>
379 <dependency>
380 <groupId>org.apache.hyracks</groupId>
381 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400382 <type>test-jar</type>
383 <scope>test</scope>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700384 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400385 <dependency>
386 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500387 <artifactId>hyracks-dataflow-common</artifactId>
388 </dependency>
389 <dependency>
390 <groupId>com.e-movimento.tinytools</groupId>
391 <artifactId>privilegedaccessor</artifactId>
392 <version>1.2.2</version>
Yingyi Bu80e62012017-01-20 20:43:31 -0800393 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500394 </dependency>
395 <dependency>
396 <groupId>commons-io</groupId>
397 <artifactId>commons-io</artifactId>
398 </dependency>
399 <dependency>
400 <groupId>org.apache.asterix</groupId>
401 <artifactId>asterix-lang-aql</artifactId>
402 <version>${project.version}</version>
403 </dependency>
404 <dependency>
405 <groupId>org.apache.hyracks</groupId>
406 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
407 </dependency>
408 <dependency>
409 <groupId>org.apache.asterix</groupId>
410 <artifactId>asterix-events</artifactId>
411 <version>${project.version}</version>
412 </dependency>
413 <dependency>
414 <groupId>log4j</groupId>
415 <artifactId>log4j</artifactId>
Michael Blow5ab717c2016-10-05 11:53:37 -0400416 </dependency>
417 <dependency>
418 <groupId>org.apache.hadoop</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500419 <artifactId>hadoop-hdfs</artifactId>
420 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -0400421 <scope>test</scope>
422 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800423 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500424 <groupId>org.apache.hyracks</groupId>
425 <artifactId>algebricks-data</artifactId>
426 </dependency>
427 <dependency>
428 <groupId>org.apache.hyracks</groupId>
429 <artifactId>algebricks-core</artifactId>
430 </dependency>
431 <dependency>
432 <groupId>org.apache.hyracks</groupId>
433 <artifactId>hyracks-net</artifactId>
434 </dependency>
435 <dependency>
Dmitry Lychagin86cbec52017-06-19 11:16:14 -0700436 <groupId>org.apache.hyracks</groupId>
437 <artifactId>hyracks-ipc</artifactId>
438 </dependency>
439 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500440 <groupId>javax.xml.bind</groupId>
441 <artifactId>jaxb-api</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500442 <scope>test</scope>
443 </dependency>
444 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500445 <groupId>org.apache.commons</groupId>
446 <artifactId>commons-compress</artifactId>
447 <version>1.4.1</version>
448 <scope>test</scope>
449 </dependency>
450 <dependency>
451 <groupId>org.apache.hyracks</groupId>
452 <artifactId>algebricks-runtime</artifactId>
453 </dependency>
454 <dependency>
455 <groupId>org.apache.httpcomponents</groupId>
456 <artifactId>httpcore</artifactId>
457 </dependency>
458 <dependency>
Till Westmann452ec9f62017-02-23 09:12:50 -0800459 <groupId>org.apache.httpcomponents</groupId>
460 <artifactId>httpclient</artifactId>
461 </dependency>
462 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500463 <groupId>org.apache.asterix</groupId>
464 <artifactId>asterix-lang-common</artifactId>
465 <version>${project.version}</version>
466 </dependency>
467 <dependency>
468 <groupId>org.apache.hyracks</groupId>
469 <artifactId>hyracks-storage-am-lsm-common</artifactId>
470 </dependency>
471 <dependency>
472 <groupId>org.apache.asterix</groupId>
473 <artifactId>asterix-runtime</artifactId>
474 <version>${project.version}</version>
475 </dependency>
476 <dependency>
477 <groupId>org.apache.hyracks</groupId>
478 <artifactId>hyracks-storage-common</artifactId>
479 </dependency>
480 <dependency>
481 <groupId>org.apache.hyracks</groupId>
482 <artifactId>algebricks-common</artifactId>
483 </dependency>
484 <dependency>
485 <groupId>org.apache.asterix</groupId>
486 <artifactId>asterix-lang-sqlpp</artifactId>
487 <version>${project.version}</version>
488 </dependency>
489 <dependency>
490 <groupId>org.apache.hyracks</groupId>
491 <artifactId>hyracks-util</artifactId>
492 </dependency>
493 <dependency>
494 <groupId>args4j</groupId>
495 <artifactId>args4j</artifactId>
496 </dependency>
497 <dependency>
498 <groupId>org.apache.hadoop</groupId>
499 <artifactId>hadoop-mapreduce-client-core</artifactId>
500 <scope>test</scope>
501 </dependency>
502 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500503 <groupId>commons-lang</groupId>
504 <artifactId>commons-lang</artifactId>
505 </dependency>
506 <dependency>
507 <groupId>org.apache.commons</groupId>
508 <artifactId>commons-lang3</artifactId>
509 </dependency>
510 <dependency>
511 <groupId>junit</groupId>
512 <artifactId>junit</artifactId>
513 <scope>test</scope>
514 </dependency>
515 <dependency>
516 <groupId>org.apache.hyracks</groupId>
517 <artifactId>hyracks-data-std</artifactId>
518 </dependency>
519 <dependency>
520 <groupId>org.apache.hyracks</groupId>
521 <artifactId>hyracks-dataflow-std</artifactId>
522 </dependency>
523 <dependency>
524 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500525 <artifactId>hyracks-storage-am-btree</artifactId>
526 </dependency>
527 <dependency>
528 <groupId>com.google.guava</groupId>
529 <artifactId>guava</artifactId>
530 </dependency>
531 <dependency>
532 <groupId>org.apache.hyracks</groupId>
533 <artifactId>hyracks-control-common</artifactId>
534 </dependency>
535 <dependency>
536 <groupId>org.apache.hyracks</groupId>
537 <artifactId>hyracks-storage-am-common</artifactId>
538 </dependency>
539 <dependency>
540 <groupId>org.apache.hadoop</groupId>
541 <artifactId>hadoop-common</artifactId>
542 </dependency>
543 <dependency>
544 <groupId>org.apache.asterix</groupId>
545 <artifactId>asterix-active</artifactId>
546 <version>${project.version}</version>
547 </dependency>
548 <dependency>
549 <groupId>org.apache.hadoop</groupId>
550 <artifactId>hadoop-hdfs</artifactId>
551 </dependency>
552 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800553 <groupId>com.fasterxml.jackson.core</groupId>
554 <artifactId>jackson-databind</artifactId>
555 </dependency>
556 <dependency>
557 <groupId>com.fasterxml.jackson.core</groupId>
558 <artifactId>jackson-core</artifactId>
559 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500560 <dependency>
561 <groupId>org.apache.hadoop</groupId>
562 <artifactId>hadoop-common</artifactId>
563 <classifier>tests</classifier>
564 <scope>test</scope>
565 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800566 <dependency>
567 <groupId>io.netty</groupId>
568 <artifactId>netty-all</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800569 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700570 </dependencies>
Michael Blow10a74862017-05-23 16:55:39 -0400571</project>