blob: e75ad425339ed9d9ecab29f58c6be036063f8acf [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 Jenkins0948b242017-11-20 15:56:08 -080025 <version>0.9.4-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>
Michael Blow4cd925c2018-01-20 17:15:38 -050037 <root.dir>${basedir}/..</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
Michael Blow98526fe2016-08-22 19:54:07 -040039 <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
46 <executions>
47 <execution>
48 <goals>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <goal>test-jar</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
Michael Blowa98d0de2016-05-11 16:22:52 -070055 <groupId>pl.project13.maven</groupId>
56 <artifactId>git-commit-id-plugin</artifactId>
Michael Blowa98d0de2016-05-11 16:22:52 -070057 <executions>
58 <execution>
59 <goals>
60 <goal>revision</goal>
61 </goals>
62 </execution>
63 </executions>
Michael Blowa98d0de2016-05-11 16:22:52 -070064 <configuration>
65 <!--
66 If you'd like to tell the plugin where your .git directory is,
67 use this setting, otherwise we'll perform a search trying to
68 figure out the right directory. It's better to add it explicite IMHO.
69 -->
70 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
71 <!-- this is false by default, forces the plugin to generate the git.properties file -->
72 <generateGitPropertiesFile>true</generateGitPropertiesFile>
73
74 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
75 <generateGitPropertiesFilename>./target/classes/git.properties</generateGitPropertiesFilename>
Michael Blowe2cf4912017-01-18 15:39:40 -050076
77 <!-- there is no .git directory when building from a source assembly- a static git.properties file (generated
78 at source assembly time) is used in this case -->
79 <failOnNoGitDirectory>false</failOnNoGitDirectory>
Michael Blowa98d0de2016-05-11 16:22:52 -070080 </configuration>
Michael Blowa98d0de2016-05-11 16:22:52 -070081 </plugin>
82 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070083 <artifactId>maven-resources-plugin</artifactId>
84 <executions>
85 <execution>
Ildar Absalyamovd195de12016-12-06 23:09:20 -080086 <id>copy-external-data-resources</id>
Michael Blowb4c1fb02016-05-09 15:41:00 -070087 <phase>generate-resources</phase>
88 <goals>
89 <goal>copy-resources</goal>
90 </goals>
91 <configuration>
92 <outputDirectory>target/data/csv</outputDirectory>
93 <overwrite>true</overwrite>
94 <resources>
95 <resource>
96 <directory>../asterix-external-data/src/test/resources</directory>
97 <includes>
Ildar Absalyamovd195de12016-12-06 23:09:20 -080098 <include>change_feed.csv</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -070099 </includes>
100 </resource>
101 </resources>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
Michael Blowe5bff312016-05-16 17:51:02 -0700106 <plugin>
107 <groupId>org.apache.asterix</groupId>
108 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400109 <version>${project.version}</version>
Michael Blowe5bff312016-05-16 17:51:02 -0700110 <executions>
111 <execution>
112 <id>replace-template-data</id>
113 <phase>process-test-resources</phase>
114 <goals>
115 <goal>generate-testdata</goal>
116 </goals>
117 <configuration>
118 <inputFiles>
119 <directory>data</directory>
120 <includes>
121 <include>**/*.template</include>
122 </includes>
123 </inputFiles>
124 <outputDir>target/data</outputDir>
Michael Blow7626d162017-12-10 14:26:56 -0500125 <skip>${skip.testResources}</skip>
Michael Blowe5bff312016-05-16 17:51:02 -0700126 </configuration>
127 </execution>
128 </executions>
129 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow82464fb2017-03-28 18:48:13 -0400133 <executions>
134 <execution>
135 <id>copy-external-testlib</id>
136 <phase>pre-integration-test</phase>
137 <goals>
138 <goal>copy-dependencies</goal>
139 </goals>
140 <configuration>
141 <includeClassifiers>testlib</includeClassifiers>
142 <outputDirectory>target/data/externallib</outputDirectory>
143 <overwrite>true</overwrite>
144 <stripVersion>true</stripVersion>
145 </configuration>
146 </execution>
147 </executions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500148 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500149 <ignoredUsedUndeclaredDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500150 <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency>
151 <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency>
152 </ignoredUsedUndeclaredDependencies>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500153 <usedDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500154 <usedDependency>org.apache.hadoop:hadoop-common</usedDependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500155 </usedDependencies>
Michael Blow82464fb2017-03-28 18:48:13 -0400156 <ignoredUnusedDeclaredDependencies>
157 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency>
Michael Blowc07a3442017-04-11 19:46:33 -0400158 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency>
Michael Blow82464fb2017-03-28 18:48:13 -0400159 </ignoredUnusedDeclaredDependencies>
Michael Blow599ef8f2017-01-12 11:02:53 -0500160 </configuration>
161 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400162 <plugin>
163 <groupId>org.apache.rat</groupId>
164 <artifactId>apache-rat-plugin</artifactId>
165 <executions>
166 <execution>
167 <id>default</id>
168 <phase>validate</phase>
169 <goals>
170 <goal>check</goal>
171 </goals>
172 <configuration>
173 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700174 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400175 </licenses>
176 <excludes combine.children="append">
177 <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude>
178 <exclude>src/test/resources/**/results/**</exclude>
179 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude>
180 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800181 <exclude>**/data/**</exclude>
182 <exclude>src/test//resources/**/data/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400183 <exclude>src/main/resources/queryui/**</exclude>
184 <exclude>src/main/resources/webui/**</exclude>
185 <exclude>src/test/resources/**/only*.xml</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800186 <exclude>src/main/resources/sdk/**</exclude>
Emilio Jose Coronado Lopez1cb814b2017-12-29 21:19:26 +0100187 <exclude>src/main/resources/dashboard/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400188 </excludes>
189 </configuration>
190 </execution>
191 <execution>
192 <id>webqueryui</id>
193 <phase>validate</phase>
194 <goals>
195 <goal>check</goal>
196 </goals>
197 <configuration>
198 <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile>
199 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700200 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400201 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
202 <licenseFamilyCategory>MIT</licenseFamilyCategory>
203 <licenseFamilyName>JQuery</licenseFamilyName>
204 <patterns>(c) jQuery Foundation | jquery.org/license</patterns>
205 </license>
206 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
207 <licenseFamilyCategory>MIT</licenseFamilyCategory>
208 <licenseFamilyName>Bootstrap</licenseFamilyName>
209 <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns>
210 </license>
211 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
212 <licenseFamilyCategory>MIT</licenseFamilyCategory>
213 <licenseFamilyName>AngularJS</licenseFamilyName>
214 <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns>
215 </license>
216 </licenses>
217 <licenseFamilies combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700218 <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" />
Michael Blow82464fb2017-03-28 18:48:13 -0400219 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
220 <familyName>JQuery</familyName>
221 </licenseFamily>
222 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
223 <familyName>Bootstrap</familyName>
224 </licenseFamily>
225 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
226 <familyName>AngularJS</familyName>
227 </licenseFamily>
228 </licenseFamilies>
229 <includes>
230 <include>src/main/resources/queryui/**</include>
231 <include>src/main/resources/webui/**</include>
232 </includes>
233 <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes>
234 </configuration>
235 </execution>
236 </executions>
237 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700238 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400239 <pluginManagement>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800240 <plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400241 <!--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 -0800242 <plugin>
243 <groupId>org.eclipse.m2e</groupId>
244 <artifactId>lifecycle-mapping</artifactId>
245 <version>1.0.0</version>
246 <configuration>
247 <lifecycleMappingMetadata>
248 <pluginExecutions>
249 <pluginExecution>
250 <pluginExecutionFilter>
251 <groupId>org.apache.asterix</groupId>
252 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400253 <versionRange>[0.0,)</versionRange>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800254 <goals>
255 <goal>generate-testdata</goal>
256 </goals>
257 </pluginExecutionFilter>
258 <action>
259 <ignore />
260 </action>
261 </pluginExecution>
262 </pluginExecutions>
263 </lifecycleMappingMetadata>
264 </configuration>
265 </plugin>
266 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400267 </pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700268 </build>
Michael Blow89328a82017-03-14 00:06:01 -0400269 <profiles>
270 <profile>
271 <id>skip.asterix-app.tests</id>
272 <build>
273 <plugins>
274 <plugin>
275 <groupId>org.apache.maven.plugins</groupId>
276 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow89328a82017-03-14 00:06:01 -0400277 <configuration>
278 <skip>true</skip>
279 </configuration>
280 </plugin>
281 </plugins>
282 </build>
283 </profile>
Michael Blowe30c9d32018-01-20 09:42:19 -0500284 <profile>
285 <id>asterix-gerrit-asterix-app</id>
286 <properties>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500287 <test.excludes>**/SqlppExecutionWithCancellationTest.java,**/DmlTest.java,**/RepeatedTest.java,**/SqlppExecutionTest.java</test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500288 </properties>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500289 <build>
290 <plugins>
291 <plugin>
292 <groupId>org.apache.maven.plugins</groupId>
293 <artifactId>maven-surefire-plugin</artifactId>
294 <executions>
295 <execution>
296 <id>SqlppExecutionTest</id>
297 <configuration>
298 <includes combine.self="override">
299 <include>**/SqlppExecutionTest.java</include>
300 </includes>
301 <excludes combine.self="override"/>
302 <argLine>
303 -enableassertions -Xmx${test.heap.size}m
304 -Dfile.encoding=UTF-8
305 -Xdebug
306 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=${debug.suspend.flag}
307 -Xloggc:"${project.build.directory}/surefire-reports/SqlppExecutionTest-%p-gc.log" -XX:+PrintGC -XX:+PrintGCDateStamps -XX:GCLogFileSize=10M
308 </argLine>
309 </configuration>
310 <goals>
311 <goal>test</goal>
312 </goals>
313 </execution>
314 </executions>
315 </plugin>
316 </plugins>
317 </build>
Michael Blowe30c9d32018-01-20 09:42:19 -0500318 </profile>
319 <profile>
320 <id>asterix-gerrit-asterix-app-sql-execution</id>
321 <properties>
322 <test.includes/>
323 <itest.includes>**/SqlppExecution*IT.java</itest.includes>
324 <failIfNoTests>false</failIfNoTests>
325 </properties>
326 </profile>
327 <profile>
328 <id>asterix-gerrit-verify-asterix-app</id>
329 <properties>
330 <test.includes/>
331 <itest.excludes>**/SqlppExecution*IT.java,**/RebalanceWithCancellationIT.java</itest.excludes>
332 <failIfNoTests>false</failIfNoTests>
333 </properties>
334 </profile>
335 <profile>
336 <id>asterix-gerrit-rebalance-cancellation</id>
337 <properties>
338 <test.includes>**/RebalanceWithCancellationIT.java</test.includes>
339 </properties>
340 </profile>
Michael Blow89328a82017-03-14 00:06:01 -0400341 </profiles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700342 <dependencies>
343 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700344 <groupId>org.apache.hyracks</groupId>
345 <artifactId>hyracks-control-cc</artifactId>
346 </dependency>
347 <dependency>
348 <groupId>org.apache.hyracks</groupId>
349 <artifactId>hyracks-control-nc</artifactId>
350 </dependency>
351 <dependency>
352 <groupId>org.apache.hyracks</groupId>
353 <artifactId>algebricks-compiler</artifactId>
354 </dependency>
355 <dependency>
356 <groupId>org.apache.hyracks</groupId>
357 <artifactId>hyracks-client</artifactId>
358 </dependency>
359 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700360 <groupId>org.apache.hyracks</groupId>
361 <artifactId>hyracks-api</artifactId>
362 </dependency>
363 <dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800364 <groupId>org.apache.hyracks</groupId>
365 <artifactId>hyracks-http</artifactId>
366 </dependency>
367 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700368 <groupId>org.apache.asterix</groupId>
369 <artifactId>asterix-algebra</artifactId>
370 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700371 </dependency>
372 <dependency>
373 <groupId>org.apache.asterix</groupId>
374 <artifactId>asterix-om</artifactId>
375 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700376 </dependency>
377 <dependency>
378 <groupId>org.apache.asterix</groupId>
379 <artifactId>asterix-metadata</artifactId>
380 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700381 </dependency>
382 <dependency>
383 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700384 <artifactId>asterix-common</artifactId>
385 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700386 </dependency>
387 <dependency>
388 <groupId>org.apache.asterix</groupId>
Ian Maxona7e8dbe2018-01-05 17:13:36 -0800389 <artifactId>asterix-dashboard</artifactId>
390 <version>${project.version}</version>
391 </dependency>
392 <dependency>
393 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700394 <artifactId>asterix-common</artifactId>
395 <version>${project.version}</version>
396 <type>test-jar</type>
397 <scope>test</scope>
398 </dependency>
399 <dependency>
400 <groupId>org.apache.asterix</groupId>
401 <artifactId>asterix-transactions</artifactId>
402 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700403 </dependency>
404 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700405 <groupId>org.apache.asterix</groupId>
406 <artifactId>asterix-test-framework</artifactId>
407 <version>${project.version}</version>
408 <scope>test</scope>
409 </dependency>
410 <dependency>
411 <groupId>org.mockito</groupId>
412 <artifactId>mockito-all</artifactId>
413 <version>1.10.19</version>
414 <scope>test</scope>
415 </dependency>
416 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700417 <groupId>org.apache.asterix</groupId>
418 <artifactId>asterix-replication</artifactId>
419 <version>${project.version}</version>
Michael Blow599ef8f2017-01-12 11:02:53 -0500420 </dependency>
421 <dependency>
422 <groupId>org.apache.asterix</groupId>
423 <artifactId>asterix-external-data</artifactId>
424 <version>${project.version}</version>
425 <type>test-jar</type>
426 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700427 </dependency>
428 <dependency>
429 <groupId>org.apache.asterix</groupId>
430 <artifactId>asterix-external-data</artifactId>
431 <version>${project.version}</version>
Michael Blow82464fb2017-03-28 18:48:13 -0400432 <type>zip</type>
433 <classifier>testlib</classifier>
434 <scope>test</scope>
435 </dependency>
436 <dependency>
437 <groupId>org.apache.asterix</groupId>
438 <artifactId>asterix-external-data</artifactId>
439 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700440 </dependency>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700441 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400442 <groupId>org.apache.hyracks</groupId>
443 <artifactId>hyracks-test-support</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400444 <scope>test</scope>
445 </dependency>
446 <dependency>
447 <groupId>org.apache.hyracks</groupId>
448 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400449 <type>test-jar</type>
450 <scope>test</scope>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700451 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400452 <dependency>
453 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500454 <artifactId>hyracks-dataflow-common</artifactId>
455 </dependency>
456 <dependency>
457 <groupId>com.e-movimento.tinytools</groupId>
458 <artifactId>privilegedaccessor</artifactId>
459 <version>1.2.2</version>
Yingyi Bu80e62012017-01-20 20:43:31 -0800460 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500461 </dependency>
462 <dependency>
463 <groupId>commons-io</groupId>
464 <artifactId>commons-io</artifactId>
465 </dependency>
466 <dependency>
467 <groupId>org.apache.asterix</groupId>
468 <artifactId>asterix-lang-aql</artifactId>
469 <version>${project.version}</version>
470 </dependency>
471 <dependency>
472 <groupId>org.apache.hyracks</groupId>
473 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
474 </dependency>
475 <dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400476 <groupId>org.apache.hadoop</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500477 <artifactId>hadoop-hdfs</artifactId>
478 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -0400479 <scope>test</scope>
480 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800481 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500482 <groupId>org.apache.hyracks</groupId>
483 <artifactId>algebricks-data</artifactId>
484 </dependency>
485 <dependency>
486 <groupId>org.apache.hyracks</groupId>
487 <artifactId>algebricks-core</artifactId>
488 </dependency>
489 <dependency>
490 <groupId>org.apache.hyracks</groupId>
491 <artifactId>hyracks-net</artifactId>
492 </dependency>
493 <dependency>
Dmitry Lychagin86cbec52017-06-19 11:16:14 -0700494 <groupId>org.apache.hyracks</groupId>
495 <artifactId>hyracks-ipc</artifactId>
496 </dependency>
497 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500498 <groupId>javax.xml.bind</groupId>
499 <artifactId>jaxb-api</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500500 <scope>test</scope>
501 </dependency>
502 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500503 <groupId>org.apache.commons</groupId>
504 <artifactId>commons-compress</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500505 </dependency>
506 <dependency>
507 <groupId>org.apache.hyracks</groupId>
508 <artifactId>algebricks-runtime</artifactId>
509 </dependency>
510 <dependency>
511 <groupId>org.apache.httpcomponents</groupId>
512 <artifactId>httpcore</artifactId>
513 </dependency>
514 <dependency>
Till Westmann452ec9f62017-02-23 09:12:50 -0800515 <groupId>org.apache.httpcomponents</groupId>
516 <artifactId>httpclient</artifactId>
517 </dependency>
518 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500519 <groupId>org.apache.asterix</groupId>
520 <artifactId>asterix-lang-common</artifactId>
521 <version>${project.version}</version>
522 </dependency>
523 <dependency>
524 <groupId>org.apache.hyracks</groupId>
525 <artifactId>hyracks-storage-am-lsm-common</artifactId>
526 </dependency>
527 <dependency>
528 <groupId>org.apache.asterix</groupId>
529 <artifactId>asterix-runtime</artifactId>
530 <version>${project.version}</version>
531 </dependency>
532 <dependency>
533 <groupId>org.apache.hyracks</groupId>
534 <artifactId>hyracks-storage-common</artifactId>
535 </dependency>
536 <dependency>
537 <groupId>org.apache.hyracks</groupId>
538 <artifactId>algebricks-common</artifactId>
539 </dependency>
540 <dependency>
541 <groupId>org.apache.asterix</groupId>
542 <artifactId>asterix-lang-sqlpp</artifactId>
543 <version>${project.version}</version>
544 </dependency>
545 <dependency>
546 <groupId>org.apache.hyracks</groupId>
547 <artifactId>hyracks-util</artifactId>
548 </dependency>
549 <dependency>
550 <groupId>args4j</groupId>
551 <artifactId>args4j</artifactId>
552 </dependency>
553 <dependency>
554 <groupId>org.apache.hadoop</groupId>
555 <artifactId>hadoop-mapreduce-client-core</artifactId>
556 <scope>test</scope>
557 </dependency>
558 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500559 <groupId>commons-lang</groupId>
560 <artifactId>commons-lang</artifactId>
561 </dependency>
562 <dependency>
563 <groupId>org.apache.commons</groupId>
564 <artifactId>commons-lang3</artifactId>
565 </dependency>
566 <dependency>
567 <groupId>junit</groupId>
568 <artifactId>junit</artifactId>
569 <scope>test</scope>
570 </dependency>
571 <dependency>
572 <groupId>org.apache.hyracks</groupId>
573 <artifactId>hyracks-data-std</artifactId>
574 </dependency>
575 <dependency>
576 <groupId>org.apache.hyracks</groupId>
577 <artifactId>hyracks-dataflow-std</artifactId>
578 </dependency>
579 <dependency>
580 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500581 <artifactId>hyracks-storage-am-btree</artifactId>
582 </dependency>
583 <dependency>
584 <groupId>com.google.guava</groupId>
585 <artifactId>guava</artifactId>
586 </dependency>
587 <dependency>
588 <groupId>org.apache.hyracks</groupId>
589 <artifactId>hyracks-control-common</artifactId>
590 </dependency>
591 <dependency>
592 <groupId>org.apache.hyracks</groupId>
593 <artifactId>hyracks-storage-am-common</artifactId>
594 </dependency>
595 <dependency>
596 <groupId>org.apache.hadoop</groupId>
597 <artifactId>hadoop-common</artifactId>
598 </dependency>
599 <dependency>
600 <groupId>org.apache.asterix</groupId>
601 <artifactId>asterix-active</artifactId>
602 <version>${project.version}</version>
603 </dependency>
604 <dependency>
605 <groupId>org.apache.hadoop</groupId>
606 <artifactId>hadoop-hdfs</artifactId>
607 </dependency>
608 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800609 <groupId>com.fasterxml.jackson.core</groupId>
610 <artifactId>jackson-databind</artifactId>
611 </dependency>
612 <dependency>
613 <groupId>com.fasterxml.jackson.core</groupId>
614 <artifactId>jackson-core</artifactId>
615 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500616 <dependency>
617 <groupId>org.apache.hadoop</groupId>
618 <artifactId>hadoop-common</artifactId>
619 <classifier>tests</classifier>
620 <scope>test</scope>
621 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800622 <dependency>
623 <groupId>io.netty</groupId>
624 <artifactId>netty-all</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800625 </dependency>
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700626 <dependency>
627 <groupId>org.apache.hyracks</groupId>
628 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
629 <type>test-jar</type>
630 <scope>test</scope>
631 </dependency>
Murtadha Hubailc90f1e32017-11-10 18:17:29 +0300632 <dependency>
633 <groupId>org.apache.hyracks</groupId>
634 <artifactId>hyracks-comm</artifactId>
635 <version>${hyracks.version}</version>
636 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300637 <dependency>
638 <groupId>org.apache.logging.log4j</groupId>
639 <artifactId>log4j-api</artifactId>
640 </dependency>
641 <dependency>
642 <groupId>org.apache.logging.log4j</groupId>
Murtadha Hubail56295d92017-12-20 02:18:37 +0300643 <artifactId>log4j-jul</artifactId>
644 <version>2.10.0</version>
645 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700646 </dependencies>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800647</project>