blob: b51d499f1db8fa4d3143005f1da6174d5692aac7 [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 Blowb8307792018-03-13 20:45:51 -0700155 <usedDependency>org.apache.asterix:asterix-fuzzyjoin</usedDependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500156 </usedDependencies>
Michael Blow82464fb2017-03-28 18:48:13 -0400157 <ignoredUnusedDeclaredDependencies>
158 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency>
Michael Blowc07a3442017-04-11 19:46:33 -0400159 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency>
Michael Blow82464fb2017-03-28 18:48:13 -0400160 </ignoredUnusedDeclaredDependencies>
Michael Blow599ef8f2017-01-12 11:02:53 -0500161 </configuration>
162 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400163 <plugin>
164 <groupId>org.apache.rat</groupId>
165 <artifactId>apache-rat-plugin</artifactId>
166 <executions>
167 <execution>
168 <id>default</id>
169 <phase>validate</phase>
170 <goals>
171 <goal>check</goal>
172 </goals>
173 <configuration>
174 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700175 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400176 </licenses>
177 <excludes combine.children="append">
178 <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude>
179 <exclude>src/test/resources/**/results/**</exclude>
180 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude>
181 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800182 <exclude>**/data/**</exclude>
183 <exclude>src/test//resources/**/data/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400184 <exclude>src/main/resources/queryui/**</exclude>
185 <exclude>src/main/resources/webui/**</exclude>
186 <exclude>src/test/resources/**/only*.xml</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800187 <exclude>src/main/resources/sdk/**</exclude>
Emilio Jose Coronado Lopez1cb814b2017-12-29 21:19:26 +0100188 <exclude>src/main/resources/dashboard/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400189 </excludes>
190 </configuration>
191 </execution>
192 <execution>
193 <id>webqueryui</id>
194 <phase>validate</phase>
195 <goals>
196 <goal>check</goal>
197 </goals>
198 <configuration>
199 <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile>
200 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700201 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400202 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
203 <licenseFamilyCategory>MIT</licenseFamilyCategory>
204 <licenseFamilyName>JQuery</licenseFamilyName>
205 <patterns>(c) jQuery Foundation | jquery.org/license</patterns>
206 </license>
207 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
208 <licenseFamilyCategory>MIT</licenseFamilyCategory>
209 <licenseFamilyName>Bootstrap</licenseFamilyName>
210 <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns>
211 </license>
212 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
213 <licenseFamilyCategory>MIT</licenseFamilyCategory>
214 <licenseFamilyName>AngularJS</licenseFamilyName>
215 <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns>
216 </license>
217 </licenses>
218 <licenseFamilies combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700219 <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" />
Michael Blow82464fb2017-03-28 18:48:13 -0400220 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
221 <familyName>JQuery</familyName>
222 </licenseFamily>
223 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
224 <familyName>Bootstrap</familyName>
225 </licenseFamily>
226 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
227 <familyName>AngularJS</familyName>
228 </licenseFamily>
229 </licenseFamilies>
230 <includes>
231 <include>src/main/resources/queryui/**</include>
232 <include>src/main/resources/webui/**</include>
233 </includes>
234 <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes>
235 </configuration>
236 </execution>
237 </executions>
238 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700239 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400240 <pluginManagement>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800241 <plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400242 <!--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 -0800243 <plugin>
244 <groupId>org.eclipse.m2e</groupId>
245 <artifactId>lifecycle-mapping</artifactId>
246 <version>1.0.0</version>
247 <configuration>
248 <lifecycleMappingMetadata>
249 <pluginExecutions>
250 <pluginExecution>
251 <pluginExecutionFilter>
252 <groupId>org.apache.asterix</groupId>
253 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400254 <versionRange>[0.0,)</versionRange>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800255 <goals>
256 <goal>generate-testdata</goal>
257 </goals>
258 </pluginExecutionFilter>
259 <action>
260 <ignore />
261 </action>
262 </pluginExecution>
263 </pluginExecutions>
264 </lifecycleMappingMetadata>
265 </configuration>
266 </plugin>
267 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400268 </pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700269 </build>
Michael Blow89328a82017-03-14 00:06:01 -0400270 <profiles>
271 <profile>
272 <id>skip.asterix-app.tests</id>
273 <build>
274 <plugins>
275 <plugin>
276 <groupId>org.apache.maven.plugins</groupId>
277 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow89328a82017-03-14 00:06:01 -0400278 <configuration>
279 <skip>true</skip>
280 </configuration>
281 </plugin>
282 </plugins>
283 </build>
284 </profile>
Michael Blowe30c9d32018-01-20 09:42:19 -0500285 <profile>
286 <id>asterix-gerrit-asterix-app</id>
287 <properties>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500288 <test.excludes>**/SqlppExecutionWithCancellationTest.java,**/DmlTest.java,**/RepeatedTest.java,**/SqlppExecutionTest.java</test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500289 </properties>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500290 <build>
291 <plugins>
292 <plugin>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-surefire-plugin</artifactId>
295 <executions>
296 <execution>
297 <id>SqlppExecutionTest</id>
298 <configuration>
299 <includes combine.self="override">
300 <include>**/SqlppExecutionTest.java</include>
301 </includes>
302 <excludes combine.self="override"/>
303 <argLine>
304 -enableassertions -Xmx${test.heap.size}m
305 -Dfile.encoding=UTF-8
306 -Xdebug
307 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=${debug.suspend.flag}
308 -Xloggc:"${project.build.directory}/surefire-reports/SqlppExecutionTest-%p-gc.log" -XX:+PrintGC -XX:+PrintGCDateStamps -XX:GCLogFileSize=10M
309 </argLine>
310 </configuration>
311 <goals>
312 <goal>test</goal>
313 </goals>
314 </execution>
315 </executions>
316 </plugin>
317 </plugins>
318 </build>
Michael Blowe30c9d32018-01-20 09:42:19 -0500319 </profile>
320 <profile>
321 <id>asterix-gerrit-asterix-app-sql-execution</id>
322 <properties>
323 <test.includes/>
324 <itest.includes>**/SqlppExecution*IT.java</itest.includes>
325 <failIfNoTests>false</failIfNoTests>
326 </properties>
327 </profile>
328 <profile>
329 <id>asterix-gerrit-verify-asterix-app</id>
330 <properties>
331 <test.includes/>
332 <itest.excludes>**/SqlppExecution*IT.java,**/RebalanceWithCancellationIT.java</itest.excludes>
333 <failIfNoTests>false</failIfNoTests>
334 </properties>
335 </profile>
336 <profile>
337 <id>asterix-gerrit-rebalance-cancellation</id>
338 <properties>
339 <test.includes>**/RebalanceWithCancellationIT.java</test.includes>
340 </properties>
341 </profile>
Michael Blow89328a82017-03-14 00:06:01 -0400342 </profiles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700343 <dependencies>
344 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700345 <groupId>org.apache.hyracks</groupId>
346 <artifactId>hyracks-control-cc</artifactId>
347 </dependency>
348 <dependency>
349 <groupId>org.apache.hyracks</groupId>
350 <artifactId>hyracks-control-nc</artifactId>
351 </dependency>
352 <dependency>
353 <groupId>org.apache.hyracks</groupId>
354 <artifactId>algebricks-compiler</artifactId>
355 </dependency>
356 <dependency>
357 <groupId>org.apache.hyracks</groupId>
358 <artifactId>hyracks-client</artifactId>
359 </dependency>
360 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700361 <groupId>org.apache.hyracks</groupId>
362 <artifactId>hyracks-api</artifactId>
363 </dependency>
364 <dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800365 <groupId>org.apache.hyracks</groupId>
366 <artifactId>hyracks-http</artifactId>
367 </dependency>
368 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700369 <groupId>org.apache.asterix</groupId>
370 <artifactId>asterix-algebra</artifactId>
371 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700372 </dependency>
373 <dependency>
374 <groupId>org.apache.asterix</groupId>
375 <artifactId>asterix-om</artifactId>
376 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700377 </dependency>
378 <dependency>
379 <groupId>org.apache.asterix</groupId>
380 <artifactId>asterix-metadata</artifactId>
381 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700382 </dependency>
383 <dependency>
384 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700385 <artifactId>asterix-common</artifactId>
386 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700387 </dependency>
388 <dependency>
389 <groupId>org.apache.asterix</groupId>
Ian Maxona7e8dbe2018-01-05 17:13:36 -0800390 <artifactId>asterix-dashboard</artifactId>
391 <version>${project.version}</version>
392 </dependency>
393 <dependency>
394 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700395 <artifactId>asterix-common</artifactId>
396 <version>${project.version}</version>
397 <type>test-jar</type>
398 <scope>test</scope>
399 </dependency>
400 <dependency>
401 <groupId>org.apache.asterix</groupId>
402 <artifactId>asterix-transactions</artifactId>
403 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700404 </dependency>
405 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700406 <groupId>org.apache.asterix</groupId>
407 <artifactId>asterix-test-framework</artifactId>
408 <version>${project.version}</version>
409 <scope>test</scope>
410 </dependency>
411 <dependency>
412 <groupId>org.mockito</groupId>
413 <artifactId>mockito-all</artifactId>
414 <version>1.10.19</version>
415 <scope>test</scope>
416 </dependency>
417 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700418 <groupId>org.apache.asterix</groupId>
419 <artifactId>asterix-replication</artifactId>
420 <version>${project.version}</version>
Michael Blow599ef8f2017-01-12 11:02:53 -0500421 </dependency>
422 <dependency>
423 <groupId>org.apache.asterix</groupId>
424 <artifactId>asterix-external-data</artifactId>
425 <version>${project.version}</version>
426 <type>test-jar</type>
427 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700428 </dependency>
429 <dependency>
430 <groupId>org.apache.asterix</groupId>
431 <artifactId>asterix-external-data</artifactId>
432 <version>${project.version}</version>
Michael Blow82464fb2017-03-28 18:48:13 -0400433 <type>zip</type>
434 <classifier>testlib</classifier>
435 <scope>test</scope>
436 </dependency>
437 <dependency>
438 <groupId>org.apache.asterix</groupId>
439 <artifactId>asterix-external-data</artifactId>
440 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700441 </dependency>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700442 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400443 <groupId>org.apache.hyracks</groupId>
444 <artifactId>hyracks-test-support</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400445 <scope>test</scope>
446 </dependency>
447 <dependency>
448 <groupId>org.apache.hyracks</groupId>
449 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400450 <type>test-jar</type>
451 <scope>test</scope>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700452 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400453 <dependency>
454 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500455 <artifactId>hyracks-dataflow-common</artifactId>
456 </dependency>
457 <dependency>
458 <groupId>com.e-movimento.tinytools</groupId>
459 <artifactId>privilegedaccessor</artifactId>
460 <version>1.2.2</version>
Yingyi Bu80e62012017-01-20 20:43:31 -0800461 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500462 </dependency>
463 <dependency>
464 <groupId>commons-io</groupId>
465 <artifactId>commons-io</artifactId>
466 </dependency>
467 <dependency>
468 <groupId>org.apache.asterix</groupId>
469 <artifactId>asterix-lang-aql</artifactId>
470 <version>${project.version}</version>
471 </dependency>
472 <dependency>
473 <groupId>org.apache.hyracks</groupId>
474 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
475 </dependency>
476 <dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400477 <groupId>org.apache.hadoop</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500478 <artifactId>hadoop-hdfs</artifactId>
479 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -0400480 <scope>test</scope>
481 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800482 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500483 <groupId>org.apache.hyracks</groupId>
484 <artifactId>algebricks-data</artifactId>
485 </dependency>
486 <dependency>
487 <groupId>org.apache.hyracks</groupId>
488 <artifactId>algebricks-core</artifactId>
489 </dependency>
490 <dependency>
491 <groupId>org.apache.hyracks</groupId>
492 <artifactId>hyracks-net</artifactId>
493 </dependency>
494 <dependency>
Dmitry Lychagin86cbec52017-06-19 11:16:14 -0700495 <groupId>org.apache.hyracks</groupId>
496 <artifactId>hyracks-ipc</artifactId>
497 </dependency>
498 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500499 <groupId>javax.xml.bind</groupId>
500 <artifactId>jaxb-api</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500501 <scope>test</scope>
502 </dependency>
503 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500504 <groupId>org.apache.commons</groupId>
505 <artifactId>commons-compress</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500506 </dependency>
507 <dependency>
508 <groupId>org.apache.hyracks</groupId>
509 <artifactId>algebricks-runtime</artifactId>
510 </dependency>
511 <dependency>
512 <groupId>org.apache.httpcomponents</groupId>
513 <artifactId>httpcore</artifactId>
514 </dependency>
515 <dependency>
Till Westmann452ec9f62017-02-23 09:12:50 -0800516 <groupId>org.apache.httpcomponents</groupId>
517 <artifactId>httpclient</artifactId>
518 </dependency>
519 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500520 <groupId>org.apache.asterix</groupId>
521 <artifactId>asterix-lang-common</artifactId>
522 <version>${project.version}</version>
523 </dependency>
524 <dependency>
525 <groupId>org.apache.hyracks</groupId>
526 <artifactId>hyracks-storage-am-lsm-common</artifactId>
527 </dependency>
528 <dependency>
529 <groupId>org.apache.asterix</groupId>
530 <artifactId>asterix-runtime</artifactId>
531 <version>${project.version}</version>
532 </dependency>
533 <dependency>
534 <groupId>org.apache.hyracks</groupId>
535 <artifactId>hyracks-storage-common</artifactId>
536 </dependency>
537 <dependency>
538 <groupId>org.apache.hyracks</groupId>
539 <artifactId>algebricks-common</artifactId>
540 </dependency>
541 <dependency>
542 <groupId>org.apache.asterix</groupId>
543 <artifactId>asterix-lang-sqlpp</artifactId>
544 <version>${project.version}</version>
545 </dependency>
546 <dependency>
547 <groupId>org.apache.hyracks</groupId>
548 <artifactId>hyracks-util</artifactId>
549 </dependency>
550 <dependency>
551 <groupId>args4j</groupId>
552 <artifactId>args4j</artifactId>
553 </dependency>
554 <dependency>
555 <groupId>org.apache.hadoop</groupId>
556 <artifactId>hadoop-mapreduce-client-core</artifactId>
557 <scope>test</scope>
558 </dependency>
559 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500560 <groupId>commons-lang</groupId>
561 <artifactId>commons-lang</artifactId>
562 </dependency>
563 <dependency>
564 <groupId>org.apache.commons</groupId>
565 <artifactId>commons-lang3</artifactId>
566 </dependency>
567 <dependency>
568 <groupId>junit</groupId>
569 <artifactId>junit</artifactId>
570 <scope>test</scope>
571 </dependency>
572 <dependency>
573 <groupId>org.apache.hyracks</groupId>
574 <artifactId>hyracks-data-std</artifactId>
575 </dependency>
576 <dependency>
577 <groupId>org.apache.hyracks</groupId>
578 <artifactId>hyracks-dataflow-std</artifactId>
579 </dependency>
580 <dependency>
581 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500582 <artifactId>hyracks-storage-am-btree</artifactId>
583 </dependency>
584 <dependency>
585 <groupId>com.google.guava</groupId>
586 <artifactId>guava</artifactId>
587 </dependency>
588 <dependency>
589 <groupId>org.apache.hyracks</groupId>
590 <artifactId>hyracks-control-common</artifactId>
591 </dependency>
592 <dependency>
593 <groupId>org.apache.hyracks</groupId>
594 <artifactId>hyracks-storage-am-common</artifactId>
595 </dependency>
596 <dependency>
597 <groupId>org.apache.hadoop</groupId>
598 <artifactId>hadoop-common</artifactId>
599 </dependency>
600 <dependency>
601 <groupId>org.apache.asterix</groupId>
602 <artifactId>asterix-active</artifactId>
603 <version>${project.version}</version>
604 </dependency>
605 <dependency>
606 <groupId>org.apache.hadoop</groupId>
607 <artifactId>hadoop-hdfs</artifactId>
608 </dependency>
609 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800610 <groupId>com.fasterxml.jackson.core</groupId>
611 <artifactId>jackson-databind</artifactId>
612 </dependency>
613 <dependency>
614 <groupId>com.fasterxml.jackson.core</groupId>
615 <artifactId>jackson-core</artifactId>
616 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500617 <dependency>
618 <groupId>org.apache.hadoop</groupId>
619 <artifactId>hadoop-common</artifactId>
620 <classifier>tests</classifier>
621 <scope>test</scope>
622 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800623 <dependency>
624 <groupId>io.netty</groupId>
625 <artifactId>netty-all</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800626 </dependency>
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700627 <dependency>
628 <groupId>org.apache.hyracks</groupId>
629 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
630 <type>test-jar</type>
631 <scope>test</scope>
632 </dependency>
Murtadha Hubailc90f1e32017-11-10 18:17:29 +0300633 <dependency>
634 <groupId>org.apache.hyracks</groupId>
635 <artifactId>hyracks-comm</artifactId>
636 <version>${hyracks.version}</version>
637 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300638 <dependency>
639 <groupId>org.apache.logging.log4j</groupId>
640 <artifactId>log4j-api</artifactId>
641 </dependency>
642 <dependency>
643 <groupId>org.apache.logging.log4j</groupId>
Murtadha Hubail56295d92017-12-20 02:18:37 +0300644 <artifactId>log4j-jul</artifactId>
645 <version>2.10.0</version>
646 </dependency>
Michael Blowb8307792018-03-13 20:45:51 -0700647 <dependency>
648 <groupId>org.apache.asterix</groupId>
649 <artifactId>asterix-fuzzyjoin</artifactId>
650 <version>${project.version}</version>
651 <scope>test</scope>
652 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700653 </dependencies>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800654</project>