blob: 2ca748ff6a15fd17fdbd30d6490442f0f9b88b37 [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 !-->
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -070019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 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 -070021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>apache-asterixdb</artifactId>
24 <groupId>org.apache.asterix</groupId>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070025 <version>0.9.3-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070026 </parent>
27 <artifactId>asterix-app</artifactId>
28 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
Michael Blowb4c1fb02016-05-09 15:41:00 -070036 <properties>
37 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
Michael Blow98526fe2016-08-22 19:54:07 -040038 <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-jar-plugin</artifactId>
45 <executions>
46 <execution>
47 <goals>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <goal>test-jar</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
Michael Blowa98d0de2016-05-11 16:22:52 -070054 <groupId>pl.project13.maven</groupId>
55 <artifactId>git-commit-id-plugin</artifactId>
Michael Blowa98d0de2016-05-11 16:22:52 -070056 <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>
Michael Blow7626d162017-12-10 14:26:56 -0500124 <skip>${skip.testResources}</skip>
Michael Blowe5bff312016-05-16 17:51:02 -0700125 </configuration>
126 </execution>
127 </executions>
128 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow82464fb2017-03-28 18:48:13 -0400132 <executions>
133 <execution>
134 <id>copy-external-testlib</id>
135 <phase>pre-integration-test</phase>
136 <goals>
137 <goal>copy-dependencies</goal>
138 </goals>
139 <configuration>
140 <includeClassifiers>testlib</includeClassifiers>
141 <outputDirectory>target/data/externallib</outputDirectory>
142 <overwrite>true</overwrite>
143 <stripVersion>true</stripVersion>
144 </configuration>
145 </execution>
146 </executions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500147 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500148 <ignoredUsedUndeclaredDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500149 <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency>
150 <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency>
151 </ignoredUsedUndeclaredDependencies>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500152 <usedDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500153 <usedDependency>org.apache.hadoop:hadoop-common</usedDependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500154 </usedDependencies>
Michael Blow82464fb2017-03-28 18:48:13 -0400155 <ignoredUnusedDeclaredDependencies>
156 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency>
Michael Blowc07a3442017-04-11 19:46:33 -0400157 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency>
Michael Blow82464fb2017-03-28 18:48:13 -0400158 </ignoredUnusedDeclaredDependencies>
Michael Blow599ef8f2017-01-12 11:02:53 -0500159 </configuration>
160 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400161 <plugin>
162 <groupId>org.apache.rat</groupId>
163 <artifactId>apache-rat-plugin</artifactId>
164 <executions>
165 <execution>
166 <id>default</id>
167 <phase>validate</phase>
168 <goals>
169 <goal>check</goal>
170 </goals>
171 <configuration>
172 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700173 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400174 </licenses>
175 <excludes combine.children="append">
176 <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude>
177 <exclude>src/test/resources/**/results/**</exclude>
178 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude>
179 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800180 <exclude>**/data/**</exclude>
181 <exclude>src/test//resources/**/data/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400182 <exclude>src/main/resources/queryui/**</exclude>
183 <exclude>src/main/resources/webui/**</exclude>
184 <exclude>src/test/resources/**/only*.xml</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800185 <exclude>src/main/resources/sdk/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400186 </excludes>
187 </configuration>
188 </execution>
189 <execution>
190 <id>webqueryui</id>
191 <phase>validate</phase>
192 <goals>
193 <goal>check</goal>
194 </goals>
195 <configuration>
196 <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile>
197 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700198 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400199 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
200 <licenseFamilyCategory>MIT</licenseFamilyCategory>
201 <licenseFamilyName>JQuery</licenseFamilyName>
202 <patterns>(c) jQuery Foundation | jquery.org/license</patterns>
203 </license>
204 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
205 <licenseFamilyCategory>MIT</licenseFamilyCategory>
206 <licenseFamilyName>Bootstrap</licenseFamilyName>
207 <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns>
208 </license>
209 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
210 <licenseFamilyCategory>MIT</licenseFamilyCategory>
211 <licenseFamilyName>AngularJS</licenseFamilyName>
212 <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns>
213 </license>
214 </licenses>
215 <licenseFamilies combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700216 <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" />
Michael Blow82464fb2017-03-28 18:48:13 -0400217 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
218 <familyName>JQuery</familyName>
219 </licenseFamily>
220 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
221 <familyName>Bootstrap</familyName>
222 </licenseFamily>
223 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
224 <familyName>AngularJS</familyName>
225 </licenseFamily>
226 </licenseFamilies>
227 <includes>
228 <include>src/main/resources/queryui/**</include>
229 <include>src/main/resources/webui/**</include>
230 </includes>
231 <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes>
232 </configuration>
233 </execution>
234 </executions>
235 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700236 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400237 <pluginManagement>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800238 <plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400239 <!--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 -0800240 <plugin>
241 <groupId>org.eclipse.m2e</groupId>
242 <artifactId>lifecycle-mapping</artifactId>
243 <version>1.0.0</version>
244 <configuration>
245 <lifecycleMappingMetadata>
246 <pluginExecutions>
247 <pluginExecution>
248 <pluginExecutionFilter>
249 <groupId>org.apache.asterix</groupId>
250 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400251 <versionRange>[0.0,)</versionRange>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800252 <goals>
253 <goal>generate-testdata</goal>
254 </goals>
255 </pluginExecutionFilter>
256 <action>
257 <ignore />
258 </action>
259 </pluginExecution>
260 </pluginExecutions>
261 </lifecycleMappingMetadata>
262 </configuration>
263 </plugin>
264 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400265 </pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700266 </build>
Michael Blow89328a82017-03-14 00:06:01 -0400267 <profiles>
268 <profile>
269 <id>skip.asterix-app.tests</id>
270 <build>
271 <plugins>
272 <plugin>
273 <groupId>org.apache.maven.plugins</groupId>
274 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow89328a82017-03-14 00:06:01 -0400275 <configuration>
276 <skip>true</skip>
277 </configuration>
278 </plugin>
279 </plugins>
280 </build>
281 </profile>
282 </profiles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700283 <dependencies>
284 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700285 <groupId>org.apache.hyracks</groupId>
286 <artifactId>hyracks-control-cc</artifactId>
287 </dependency>
288 <dependency>
289 <groupId>org.apache.hyracks</groupId>
290 <artifactId>hyracks-control-nc</artifactId>
291 </dependency>
292 <dependency>
293 <groupId>org.apache.hyracks</groupId>
294 <artifactId>algebricks-compiler</artifactId>
295 </dependency>
296 <dependency>
297 <groupId>org.apache.hyracks</groupId>
298 <artifactId>hyracks-client</artifactId>
299 </dependency>
300 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700301 <groupId>org.apache.hyracks</groupId>
302 <artifactId>hyracks-api</artifactId>
303 </dependency>
304 <dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800305 <groupId>org.apache.hyracks</groupId>
306 <artifactId>hyracks-http</artifactId>
307 </dependency>
308 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700309 <groupId>org.apache.asterix</groupId>
310 <artifactId>asterix-algebra</artifactId>
311 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700312 </dependency>
313 <dependency>
314 <groupId>org.apache.asterix</groupId>
315 <artifactId>asterix-om</artifactId>
316 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700317 </dependency>
318 <dependency>
319 <groupId>org.apache.asterix</groupId>
320 <artifactId>asterix-metadata</artifactId>
321 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700322 </dependency>
323 <dependency>
324 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700325 <artifactId>asterix-common</artifactId>
326 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700327 </dependency>
328 <dependency>
329 <groupId>org.apache.asterix</groupId>
330 <artifactId>asterix-common</artifactId>
331 <version>${project.version}</version>
332 <type>test-jar</type>
333 <scope>test</scope>
334 </dependency>
335 <dependency>
336 <groupId>org.apache.asterix</groupId>
337 <artifactId>asterix-transactions</artifactId>
338 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700339 </dependency>
340 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700341 <groupId>org.apache.asterix</groupId>
342 <artifactId>asterix-test-framework</artifactId>
343 <version>${project.version}</version>
344 <scope>test</scope>
345 </dependency>
346 <dependency>
347 <groupId>org.mockito</groupId>
348 <artifactId>mockito-all</artifactId>
349 <version>1.10.19</version>
350 <scope>test</scope>
351 </dependency>
352 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700353 <groupId>org.apache.asterix</groupId>
354 <artifactId>asterix-replication</artifactId>
355 <version>${project.version}</version>
Michael Blow599ef8f2017-01-12 11:02:53 -0500356 </dependency>
357 <dependency>
358 <groupId>org.apache.asterix</groupId>
359 <artifactId>asterix-external-data</artifactId>
360 <version>${project.version}</version>
361 <type>test-jar</type>
362 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700363 </dependency>
364 <dependency>
365 <groupId>org.apache.asterix</groupId>
366 <artifactId>asterix-external-data</artifactId>
367 <version>${project.version}</version>
Michael Blow82464fb2017-03-28 18:48:13 -0400368 <type>zip</type>
369 <classifier>testlib</classifier>
370 <scope>test</scope>
371 </dependency>
372 <dependency>
373 <groupId>org.apache.asterix</groupId>
374 <artifactId>asterix-external-data</artifactId>
375 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700376 </dependency>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700377 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400378 <groupId>org.apache.hyracks</groupId>
379 <artifactId>hyracks-test-support</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400380 <scope>test</scope>
381 </dependency>
382 <dependency>
383 <groupId>org.apache.hyracks</groupId>
384 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400385 <type>test-jar</type>
386 <scope>test</scope>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700387 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400388 <dependency>
389 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500390 <artifactId>hyracks-dataflow-common</artifactId>
391 </dependency>
392 <dependency>
393 <groupId>com.e-movimento.tinytools</groupId>
394 <artifactId>privilegedaccessor</artifactId>
395 <version>1.2.2</version>
Yingyi Bu80e62012017-01-20 20:43:31 -0800396 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500397 </dependency>
398 <dependency>
399 <groupId>commons-io</groupId>
400 <artifactId>commons-io</artifactId>
401 </dependency>
402 <dependency>
403 <groupId>org.apache.asterix</groupId>
404 <artifactId>asterix-lang-aql</artifactId>
405 <version>${project.version}</version>
406 </dependency>
407 <dependency>
408 <groupId>org.apache.hyracks</groupId>
409 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
410 </dependency>
411 <dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400412 <groupId>org.apache.hadoop</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500413 <artifactId>hadoop-hdfs</artifactId>
414 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -0400415 <scope>test</scope>
416 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800417 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500418 <groupId>org.apache.hyracks</groupId>
419 <artifactId>algebricks-data</artifactId>
420 </dependency>
421 <dependency>
422 <groupId>org.apache.hyracks</groupId>
423 <artifactId>algebricks-core</artifactId>
424 </dependency>
425 <dependency>
426 <groupId>org.apache.hyracks</groupId>
427 <artifactId>hyracks-net</artifactId>
428 </dependency>
429 <dependency>
Dmitry Lychagin86cbec52017-06-19 11:16:14 -0700430 <groupId>org.apache.hyracks</groupId>
431 <artifactId>hyracks-ipc</artifactId>
432 </dependency>
433 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500434 <groupId>javax.xml.bind</groupId>
435 <artifactId>jaxb-api</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500436 <scope>test</scope>
437 </dependency>
438 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500439 <groupId>org.apache.commons</groupId>
440 <artifactId>commons-compress</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500441 </dependency>
442 <dependency>
443 <groupId>org.apache.hyracks</groupId>
444 <artifactId>algebricks-runtime</artifactId>
445 </dependency>
446 <dependency>
447 <groupId>org.apache.httpcomponents</groupId>
448 <artifactId>httpcore</artifactId>
449 </dependency>
450 <dependency>
Till Westmann452ec9f62017-02-23 09:12:50 -0800451 <groupId>org.apache.httpcomponents</groupId>
452 <artifactId>httpclient</artifactId>
453 </dependency>
454 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500455 <groupId>org.apache.asterix</groupId>
456 <artifactId>asterix-lang-common</artifactId>
457 <version>${project.version}</version>
458 </dependency>
459 <dependency>
460 <groupId>org.apache.hyracks</groupId>
461 <artifactId>hyracks-storage-am-lsm-common</artifactId>
462 </dependency>
463 <dependency>
464 <groupId>org.apache.asterix</groupId>
465 <artifactId>asterix-runtime</artifactId>
466 <version>${project.version}</version>
467 </dependency>
468 <dependency>
469 <groupId>org.apache.hyracks</groupId>
470 <artifactId>hyracks-storage-common</artifactId>
471 </dependency>
472 <dependency>
473 <groupId>org.apache.hyracks</groupId>
474 <artifactId>algebricks-common</artifactId>
475 </dependency>
476 <dependency>
477 <groupId>org.apache.asterix</groupId>
478 <artifactId>asterix-lang-sqlpp</artifactId>
479 <version>${project.version}</version>
480 </dependency>
481 <dependency>
482 <groupId>org.apache.hyracks</groupId>
483 <artifactId>hyracks-util</artifactId>
484 </dependency>
485 <dependency>
486 <groupId>args4j</groupId>
487 <artifactId>args4j</artifactId>
488 </dependency>
489 <dependency>
490 <groupId>org.apache.hadoop</groupId>
491 <artifactId>hadoop-mapreduce-client-core</artifactId>
492 <scope>test</scope>
493 </dependency>
494 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500495 <groupId>commons-lang</groupId>
496 <artifactId>commons-lang</artifactId>
497 </dependency>
498 <dependency>
499 <groupId>org.apache.commons</groupId>
500 <artifactId>commons-lang3</artifactId>
501 </dependency>
502 <dependency>
503 <groupId>junit</groupId>
504 <artifactId>junit</artifactId>
505 <scope>test</scope>
506 </dependency>
507 <dependency>
508 <groupId>org.apache.hyracks</groupId>
509 <artifactId>hyracks-data-std</artifactId>
510 </dependency>
511 <dependency>
512 <groupId>org.apache.hyracks</groupId>
513 <artifactId>hyracks-dataflow-std</artifactId>
514 </dependency>
515 <dependency>
516 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500517 <artifactId>hyracks-storage-am-btree</artifactId>
518 </dependency>
519 <dependency>
520 <groupId>com.google.guava</groupId>
521 <artifactId>guava</artifactId>
522 </dependency>
523 <dependency>
524 <groupId>org.apache.hyracks</groupId>
525 <artifactId>hyracks-control-common</artifactId>
526 </dependency>
527 <dependency>
528 <groupId>org.apache.hyracks</groupId>
529 <artifactId>hyracks-storage-am-common</artifactId>
530 </dependency>
531 <dependency>
532 <groupId>org.apache.hadoop</groupId>
533 <artifactId>hadoop-common</artifactId>
534 </dependency>
535 <dependency>
536 <groupId>org.apache.asterix</groupId>
537 <artifactId>asterix-active</artifactId>
538 <version>${project.version}</version>
539 </dependency>
540 <dependency>
541 <groupId>org.apache.hadoop</groupId>
542 <artifactId>hadoop-hdfs</artifactId>
543 </dependency>
544 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800545 <groupId>com.fasterxml.jackson.core</groupId>
546 <artifactId>jackson-databind</artifactId>
547 </dependency>
548 <dependency>
549 <groupId>com.fasterxml.jackson.core</groupId>
550 <artifactId>jackson-core</artifactId>
551 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500552 <dependency>
553 <groupId>org.apache.hadoop</groupId>
554 <artifactId>hadoop-common</artifactId>
555 <classifier>tests</classifier>
556 <scope>test</scope>
557 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800558 <dependency>
559 <groupId>io.netty</groupId>
560 <artifactId>netty-all</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800561 </dependency>
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700562 <dependency>
563 <groupId>org.apache.hyracks</groupId>
564 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
565 <type>test-jar</type>
566 <scope>test</scope>
567 </dependency>
Murtadha Hubailc90f1e32017-11-10 18:17:29 +0300568 <dependency>
569 <groupId>org.apache.hyracks</groupId>
570 <artifactId>hyracks-comm</artifactId>
571 <version>${hyracks.version}</version>
572 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300573 <dependency>
574 <groupId>org.apache.logging.log4j</groupId>
575 <artifactId>log4j-api</artifactId>
576 </dependency>
577 <dependency>
578 <groupId>org.apache.logging.log4j</groupId>
579 <artifactId>log4j-core</artifactId>
580 </dependency>
Murtadha Hubail56295d92017-12-20 02:18:37 +0300581 <dependency>
582 <groupId>org.apache.logging.log4j</groupId>
583 <artifactId>log4j-jul</artifactId>
584 <version>2.10.0</version>
585 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700586 </dependencies>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800587</project>