blob: 67285d5d6300907389fea6b850dba8780d186062 [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 Jenkins478eccb2018-08-31 14:57:31 -070025 <version>0.9.5-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>
Ian Maxona28ddb72020-04-28 15:36:30 -070040 <pip.path>${project.build.directory}${file.separator}bin${file.separator}pip3</pip.path>
41 <shiv.path>${project.build.directory}${file.separator}bin${file.separator}shiv</shiv.path>
Michael Blowb4c1fb02016-05-09 15:41:00 -070042 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <executions>
49 <execution>
50 <goals>
Michael Blowb4c1fb02016-05-09 15:41:00 -070051 <goal>test-jar</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
Michael Blowa98d0de2016-05-11 16:22:52 -070057 <groupId>pl.project13.maven</groupId>
58 <artifactId>git-commit-id-plugin</artifactId>
Michael Blowa98d0de2016-05-11 16:22:52 -070059 <executions>
60 <execution>
61 <goals>
62 <goal>revision</goal>
63 </goals>
64 </execution>
65 </executions>
Michael Blowa98d0de2016-05-11 16:22:52 -070066 <configuration>
67 <!--
68 If you'd like to tell the plugin where your .git directory is,
69 use this setting, otherwise we'll perform a search trying to
70 figure out the right directory. It's better to add it explicite IMHO.
71 -->
72 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
73 <!-- this is false by default, forces the plugin to generate the git.properties file -->
74 <generateGitPropertiesFile>true</generateGitPropertiesFile>
75
76 <!-- The path for the to be generated properties file, it's relative to ${project.basedir} -->
77 <generateGitPropertiesFilename>./target/classes/git.properties</generateGitPropertiesFilename>
Michael Blowe2cf4912017-01-18 15:39:40 -050078
79 <!-- there is no .git directory when building from a source assembly- a static git.properties file (generated
80 at source assembly time) is used in this case -->
81 <failOnNoGitDirectory>false</failOnNoGitDirectory>
Michael Blowa98d0de2016-05-11 16:22:52 -070082 </configuration>
Michael Blowa98d0de2016-05-11 16:22:52 -070083 </plugin>
84 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070085 <artifactId>maven-resources-plugin</artifactId>
86 <executions>
87 <execution>
Ildar Absalyamovd195de12016-12-06 23:09:20 -080088 <id>copy-external-data-resources</id>
Michael Blowb4c1fb02016-05-09 15:41:00 -070089 <phase>generate-resources</phase>
90 <goals>
91 <goal>copy-resources</goal>
92 </goals>
93 <configuration>
94 <outputDirectory>target/data/csv</outputDirectory>
95 <overwrite>true</overwrite>
96 <resources>
97 <resource>
98 <directory>../asterix-external-data/src/test/resources</directory>
99 <includes>
Ildar Absalyamovd195de12016-12-06 23:09:20 -0800100 <include>change_feed.csv</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700101 </includes>
102 </resource>
103 </resources>
104 </configuration>
105 </execution>
106 </executions>
107 </plugin>
Michael Blowe5bff312016-05-16 17:51:02 -0700108 <plugin>
109 <groupId>org.apache.asterix</groupId>
110 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400111 <version>${project.version}</version>
Michael Blowe5bff312016-05-16 17:51:02 -0700112 <executions>
113 <execution>
114 <id>replace-template-data</id>
115 <phase>process-test-resources</phase>
116 <goals>
117 <goal>generate-testdata</goal>
118 </goals>
119 <configuration>
120 <inputFiles>
121 <directory>data</directory>
122 <includes>
123 <include>**/*.template</include>
124 </includes>
125 </inputFiles>
126 <outputDir>target/data</outputDir>
Michael Blow7626d162017-12-10 14:26:56 -0500127 <skip>${skip.testResources}</skip>
Michael Blowe5bff312016-05-16 17:51:02 -0700128 </configuration>
129 </execution>
130 </executions>
131 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow82464fb2017-03-28 18:48:13 -0400135 <executions>
136 <execution>
137 <id>copy-external-testlib</id>
138 <phase>pre-integration-test</phase>
139 <goals>
140 <goal>copy-dependencies</goal>
141 </goals>
142 <configuration>
143 <includeClassifiers>testlib</includeClassifiers>
144 <outputDirectory>target/data/externallib</outputDirectory>
145 <overwrite>true</overwrite>
146 <stripVersion>true</stripVersion>
147 </configuration>
148 </execution>
149 </executions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500150 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500151 <ignoredUsedUndeclaredDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500152 <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency>
153 <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency>
154 </ignoredUsedUndeclaredDependencies>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500155 <usedDependencies combine.children="append">
Michael Blow599ef8f2017-01-12 11:02:53 -0500156 <usedDependency>org.apache.hadoop:hadoop-common</usedDependency>
Michael Blowb8307792018-03-13 20:45:51 -0700157 <usedDependency>org.apache.asterix:asterix-fuzzyjoin</usedDependency>
Ahmed Eldawy8cc88252018-03-23 18:19:17 -0700158 <usedDependency>org.apache.asterix:asterix-geo</usedDependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500159 </usedDependencies>
Michael Blow82464fb2017-03-28 18:48:13 -0400160 <ignoredUnusedDeclaredDependencies>
161 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency>
Michael Blowc07a3442017-04-11 19:46:33 -0400162 <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency>
Dmitry Lychaginac98f482020-03-31 12:26:40 -0700163 <ignoredUnusedDeclaredDependency>org.postgresql:postgresql:jar:*</ignoredUnusedDeclaredDependency>
Michael Blow82464fb2017-03-28 18:48:13 -0400164 </ignoredUnusedDeclaredDependencies>
Michael Blow599ef8f2017-01-12 11:02:53 -0500165 </configuration>
166 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400167 <plugin>
Ian Maxona28ddb72020-04-28 15:36:30 -0700168 <groupId>org.codehaus.mojo</groupId>
169 <artifactId>exec-maven-plugin</artifactId>
170 <executions>
171 <execution>
172 <id>venv</id>
173 <phase>${pyro-shim.stage}</phase>
174 <goals>
175 <goal>exec</goal>
176 </goals>
177 <configuration>
178 <!--suppress UnresolvedMavenProperty -->
179 <executable>${python.path}</executable>
180 <workingDirectory>${project.build.directory}</workingDirectory>
181 <arguments>
182 <argument>-m</argument>
183 <argument>venv</argument>
184 <argument>${project.build.directory}</argument>
185 </arguments>
186 </configuration>
187 </execution>
188 <execution>
189 <id>shiv-install</id>
190 <phase>${pyro-shim.stage}</phase>
191 <goals>
192 <goal>exec</goal>
193 </goals>
194 <configuration>
195 <executable>${pip.path}</executable>
196 <workingDirectory>${project.build.directory}</workingDirectory>
197 <arguments>
198 <argument>install</argument>
199 <argument>--exists-action</argument>
200 <argument>w</argument>
201 <argument>--upgrade</argument>
202 <argument>shiv</argument>
203 </arguments>
204 <environmentVariables>
205 <VIRTUALENV>${project.build.directory}</VIRTUALENV>
206 <PATH>${project.build.directory}${path.separator}${env.PATH}${file.separator}bin</PATH>
207 </environmentVariables>
208 </configuration>
209 </execution>
210 <execution>
211 <id>shiv-pyro-shim</id>
212 <phase>${pyro-shim.stage}</phase>
213 <goals>
214 <goal>exec</goal>
215 </goals>
216 <configuration>
217 <executable>${shiv.path}</executable>
218 <workingDirectory>${project.build.directory}</workingDirectory>
219 <arguments>
220 <argument>-o </argument>
221 <argument>${project.build.directory}${file.separator}classes${file.separator}pyro4.pyz</argument>
222 <argument>pyro4</argument>
223 </arguments>
224 <environmentVariables>
225 <VIRTUALENV>${project.build.directory}</VIRTUALENV>
226 <PATH>${project.build.directory}${path.separator}${env.PATH}${file.separator}bin</PATH>
227 </environmentVariables>
228 </configuration>
229 </execution>
230 <execution>
231 <id>shiv-test-lib</id>
232 <phase>${pytestlib.stage}</phase>
233 <goals>
234 <goal>exec</goal>
235 </goals>
236 <configuration>
237 <executable>${shiv.path}</executable>
238 <workingDirectory>${project.build.directory}</workingDirectory>
239 <arguments>
240 <argument>-o </argument>
241 <argument>${project.build.directory}${file.separator}TweetSent.pyz</argument>
242 <argument>--site-packages</argument>
243 <argument>${project.build.directory}${file.separator}..${file.separator}src${file.separator}test${file.separator}resources${file.separator}TweetSent</argument>
244 <argument>scikit-learn</argument>
245 </arguments>
246 <environmentVariables>
247 <VIRTUALENV>${project.build.directory}</VIRTUALENV>
248 <PATH>${project.build.directory}${path.separator}${env.PATH}${file.separator}bin</PATH>
249 </environmentVariables>
250 </configuration>
251 </execution>
252 </executions>
253 </plugin>
254 <plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400255 <groupId>org.apache.rat</groupId>
256 <artifactId>apache-rat-plugin</artifactId>
257 <executions>
258 <execution>
259 <id>default</id>
260 <phase>validate</phase>
261 <goals>
262 <goal>check</goal>
263 </goals>
264 <configuration>
265 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700266 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400267 </licenses>
268 <excludes combine.children="append">
269 <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude>
270 <exclude>src/test/resources/**/results/**</exclude>
271 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude>
272 <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800273 <exclude>**/data/**</exclude>
274 <exclude>src/test//resources/**/data/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400275 <exclude>src/main/resources/queryui/**</exclude>
276 <exclude>src/main/resources/webui/**</exclude>
277 <exclude>src/test/resources/**/only*.xml</exclude>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800278 <exclude>src/main/resources/sdk/**</exclude>
Emilio Jose Coronado Lopez1cb814b2017-12-29 21:19:26 +0100279 <exclude>src/main/resources/dashboard/**</exclude>
Murtadha Hubail595a0f32018-12-09 03:43:12 +0300280 <exclude>src/test/resources/security/**</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400281 </excludes>
282 </configuration>
283 </execution>
284 <execution>
285 <id>webqueryui</id>
286 <phase>validate</phase>
287 <goals>
288 <goal>check</goal>
289 </goals>
290 <configuration>
291 <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile>
292 <licenses combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700293 <license implementation="org.apache.rat.analysis.license.MITLicense" />
Michael Blow82464fb2017-03-28 18:48:13 -0400294 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
295 <licenseFamilyCategory>MIT</licenseFamilyCategory>
296 <licenseFamilyName>JQuery</licenseFamilyName>
297 <patterns>(c) jQuery Foundation | jquery.org/license</patterns>
298 </license>
299 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
300 <licenseFamilyCategory>MIT</licenseFamilyCategory>
301 <licenseFamilyName>Bootstrap</licenseFamilyName>
302 <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns>
303 </license>
304 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
305 <licenseFamilyCategory>MIT</licenseFamilyCategory>
306 <licenseFamilyName>AngularJS</licenseFamilyName>
307 <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns>
308 </license>
309 </licenses>
310 <licenseFamilies combine.children="append">
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700311 <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" />
Michael Blow82464fb2017-03-28 18:48:13 -0400312 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
313 <familyName>JQuery</familyName>
314 </licenseFamily>
315 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
316 <familyName>Bootstrap</familyName>
317 </licenseFamily>
318 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
319 <familyName>AngularJS</familyName>
320 </licenseFamily>
321 </licenseFamilies>
322 <includes>
323 <include>src/main/resources/queryui/**</include>
324 <include>src/main/resources/webui/**</include>
325 </includes>
326 <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes>
327 </configuration>
328 </execution>
329 </executions>
330 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700331 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400332 <pluginManagement>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800333 <plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400334 <!--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 -0800335 <plugin>
336 <groupId>org.eclipse.m2e</groupId>
337 <artifactId>lifecycle-mapping</artifactId>
338 <version>1.0.0</version>
339 <configuration>
340 <lifecycleMappingMetadata>
341 <pluginExecutions>
342 <pluginExecution>
343 <pluginExecutionFilter>
344 <groupId>org.apache.asterix</groupId>
345 <artifactId>asterix-test-datagenerator-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400346 <versionRange>[0.0,)</versionRange>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800347 <goals>
348 <goal>generate-testdata</goal>
349 </goals>
350 </pluginExecutionFilter>
351 <action>
352 <ignore />
353 </action>
354 </pluginExecution>
355 </pluginExecutions>
356 </lifecycleMappingMetadata>
357 </configuration>
358 </plugin>
359 </plugins>
Abdullah Alamoudie6e54f32016-07-12 20:40:15 +0400360 </pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700361 </build>
Michael Blow89328a82017-03-14 00:06:01 -0400362 <profiles>
363 <profile>
364 <id>skip.asterix-app.tests</id>
365 <build>
366 <plugins>
367 <plugin>
368 <groupId>org.apache.maven.plugins</groupId>
369 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow89328a82017-03-14 00:06:01 -0400370 <configuration>
371 <skip>true</skip>
372 </configuration>
373 </plugin>
374 </plugins>
375 </build>
376 </profile>
Michael Blowe30c9d32018-01-20 09:42:19 -0500377 <profile>
Ian Maxona28ddb72020-04-28 15:36:30 -0700378 <id>windows.python.envs</id>
379 <activation>
380 <os>
381 <family>Windows</family>
382 </os>
383 </activation>
384 <properties>
385 <pip.path>${project.build.directory}${file.separator}Scripts${file.separator}pip3.exe</pip.path>
386 <shiv.path>${project.build.directory}${file.separator}Scripts${file.separator}shiv.exe</shiv.path>
387 </properties>
388 </profile>
389 <profile>
Michael Blowe30c9d32018-01-20 09:42:19 -0500390 <id>asterix-gerrit-asterix-app</id>
391 <properties>
Michael Blow97e589d2019-02-15 18:57:27 -0500392 <test.excludes>**/SqlppExecutionWithCancellationTest.java,**/DmlTest.java,**/RepeatedTest.java,**/SqlppExecutionTest.java,**/AqlExecutionTest.java,**/*Compression*Test.java,**/*Ssl*Test.java</test.excludes>
Michael Blow3be5c452019-02-14 16:13:46 -0500393 <itest.excludes>**/*.java</itest.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500394 </properties>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500395 <build>
396 <plugins>
397 <plugin>
398 <groupId>org.apache.maven.plugins</groupId>
399 <artifactId>maven-surefire-plugin</artifactId>
400 <executions>
401 <execution>
402 <id>SqlppExecutionTest</id>
403 <configuration>
Michael Blowe00e1ff2018-01-22 17:05:48 -0500404 <excludes combine.self="override"/>
405 <argLine>
406 -enableassertions -Xmx${test.heap.size}m
407 -Dfile.encoding=UTF-8
408 -Xdebug
409 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=${debug.suspend.flag}
410 -Xloggc:"${project.build.directory}/surefire-reports/SqlppExecutionTest-%p-gc.log" -XX:+PrintGC -XX:+PrintGCDateStamps -XX:GCLogFileSize=10M
411 </argLine>
412 </configuration>
413 <goals>
414 <goal>test</goal>
415 </goals>
416 </execution>
417 </executions>
418 </plugin>
419 </plugins>
420 </build>
Michael Blowe30c9d32018-01-20 09:42:19 -0500421 </profile>
422 <profile>
423 <id>asterix-gerrit-asterix-app-sql-execution</id>
424 <properties>
Michael Blow3be5c452019-02-14 16:13:46 -0500425 <test.excludes>**/*.java</test.excludes>
Ian Maxona28ddb72020-04-28 15:36:30 -0700426 <itest.includes>**/SqlppExecution*IT.java,**/ExternalPythonFunction*IT.java</itest.includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500427 <failIfNoTests>false</failIfNoTests>
428 </properties>
429 </profile>
430 <profile>
Dmitry Lychaginac98f482020-03-31 12:26:40 -0700431 <id>asterix-gerrit-asterix-app-sql-rqg</id>
432 <properties>
433 <test.excludes>**/*.java</test.excludes>
434 <itest.includes>**/SqlppRQG*IT.java</itest.includes>
435 <failIfNoTests>false</failIfNoTests>
436 </properties>
437 </profile>
438 <profile>
Michael Blow9b79e732019-02-07 09:26:11 -0500439 <id>asterix-gerrit-ssl-compression</id>
440 <properties>
441 <test.includes>**/*Compression*Test.java,**/*Ssl*Test.java</test.includes>
Michael Blow3be5c452019-02-14 16:13:46 -0500442 <itest.excludes>**/*.java</itest.excludes>
Michael Blow9b79e732019-02-07 09:26:11 -0500443 <failIfNoTests>false</failIfNoTests>
444 </properties>
445 </profile>
446 <profile>
Michael Blowe30c9d32018-01-20 09:42:19 -0500447 <id>asterix-gerrit-verify-asterix-app</id>
448 <properties>
Michael Blow1298b6c2019-02-13 08:49:42 -0500449 <test.includes>**/AqlExecutionTest.java</test.includes>
Ian Maxona28ddb72020-04-28 15:36:30 -0700450 <itest.excludes>**/External*IT.java,**/SqlppExecution*IT.java,**/SqlppRQG*IT.java,**/RebalanceWithCancellationIT.java</itest.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500451 <failIfNoTests>false</failIfNoTests>
452 </properties>
453 </profile>
454 <profile>
455 <id>asterix-gerrit-rebalance-cancellation</id>
456 <properties>
Michael Blow3be5c452019-02-14 16:13:46 -0500457 <test.excludes>**/*.java</test.excludes>
458 <itest.includes>**/RebalanceWithCancellationIT.java</itest.includes>
459 <failIfNoTests>false</failIfNoTests>
Michael Blowe30c9d32018-01-20 09:42:19 -0500460 </properties>
461 </profile>
Michael Blow89328a82017-03-14 00:06:01 -0400462 </profiles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700463 <dependencies>
464 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700465 <groupId>org.apache.hyracks</groupId>
466 <artifactId>hyracks-control-cc</artifactId>
467 </dependency>
468 <dependency>
469 <groupId>org.apache.hyracks</groupId>
470 <artifactId>hyracks-control-nc</artifactId>
471 </dependency>
472 <dependency>
473 <groupId>org.apache.hyracks</groupId>
474 <artifactId>algebricks-compiler</artifactId>
475 </dependency>
476 <dependency>
477 <groupId>org.apache.hyracks</groupId>
478 <artifactId>hyracks-client</artifactId>
479 </dependency>
480 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700481 <groupId>org.apache.hyracks</groupId>
482 <artifactId>hyracks-api</artifactId>
483 </dependency>
484 <dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800485 <groupId>org.apache.hyracks</groupId>
486 <artifactId>hyracks-http</artifactId>
487 </dependency>
488 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700489 <groupId>org.apache.asterix</groupId>
490 <artifactId>asterix-algebra</artifactId>
491 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700492 </dependency>
493 <dependency>
494 <groupId>org.apache.asterix</groupId>
495 <artifactId>asterix-om</artifactId>
496 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700497 </dependency>
498 <dependency>
499 <groupId>org.apache.asterix</groupId>
500 <artifactId>asterix-metadata</artifactId>
501 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700502 </dependency>
503 <dependency>
504 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700505 <artifactId>asterix-common</artifactId>
506 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700507 </dependency>
508 <dependency>
509 <groupId>org.apache.asterix</groupId>
510 <artifactId>asterix-common</artifactId>
511 <version>${project.version}</version>
512 <type>test-jar</type>
513 <scope>test</scope>
514 </dependency>
515 <dependency>
516 <groupId>org.apache.asterix</groupId>
517 <artifactId>asterix-transactions</artifactId>
518 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700519 </dependency>
520 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700521 <groupId>org.apache.asterix</groupId>
522 <artifactId>asterix-test-framework</artifactId>
523 <version>${project.version}</version>
524 <scope>test</scope>
525 </dependency>
526 <dependency>
527 <groupId>org.mockito</groupId>
528 <artifactId>mockito-all</artifactId>
529 <version>1.10.19</version>
530 <scope>test</scope>
531 </dependency>
532 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700533 <groupId>org.apache.asterix</groupId>
534 <artifactId>asterix-replication</artifactId>
535 <version>${project.version}</version>
Michael Blow599ef8f2017-01-12 11:02:53 -0500536 </dependency>
537 <dependency>
538 <groupId>org.apache.asterix</groupId>
539 <artifactId>asterix-external-data</artifactId>
540 <version>${project.version}</version>
541 <type>test-jar</type>
542 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700543 </dependency>
544 <dependency>
545 <groupId>org.apache.asterix</groupId>
546 <artifactId>asterix-external-data</artifactId>
547 <version>${project.version}</version>
Michael Blow82464fb2017-03-28 18:48:13 -0400548 <type>zip</type>
549 <classifier>testlib</classifier>
550 <scope>test</scope>
551 </dependency>
552 <dependency>
553 <groupId>org.apache.asterix</groupId>
554 <artifactId>asterix-external-data</artifactId>
555 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700556 </dependency>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700557 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400558 <groupId>org.apache.hyracks</groupId>
559 <artifactId>hyracks-test-support</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400560 <scope>test</scope>
561 </dependency>
562 <dependency>
563 <groupId>org.apache.hyracks</groupId>
564 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400565 <type>test-jar</type>
566 <scope>test</scope>
Abdullah Alamoudif04ba062016-05-22 23:43:39 -0700567 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400568 <dependency>
569 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500570 <artifactId>hyracks-dataflow-common</artifactId>
571 </dependency>
572 <dependency>
573 <groupId>com.e-movimento.tinytools</groupId>
574 <artifactId>privilegedaccessor</artifactId>
575 <version>1.2.2</version>
Yingyi Bu80e62012017-01-20 20:43:31 -0800576 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500577 </dependency>
578 <dependency>
579 <groupId>commons-io</groupId>
580 <artifactId>commons-io</artifactId>
581 </dependency>
582 <dependency>
583 <groupId>org.apache.asterix</groupId>
584 <artifactId>asterix-lang-aql</artifactId>
585 <version>${project.version}</version>
586 </dependency>
587 <dependency>
588 <groupId>org.apache.hyracks</groupId>
589 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
590 </dependency>
591 <dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400592 <groupId>org.apache.hadoop</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500593 <artifactId>hadoop-hdfs</artifactId>
594 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -0400595 <scope>test</scope>
596 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800597 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400598 <groupId>org.apache.hadoop</groupId>
599 <artifactId>hadoop-hdfs-client</artifactId>
600 </dependency>
601 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500602 <groupId>org.apache.hyracks</groupId>
603 <artifactId>algebricks-data</artifactId>
604 </dependency>
605 <dependency>
606 <groupId>org.apache.hyracks</groupId>
607 <artifactId>algebricks-core</artifactId>
608 </dependency>
609 <dependency>
610 <groupId>org.apache.hyracks</groupId>
611 <artifactId>hyracks-net</artifactId>
612 </dependency>
613 <dependency>
Dmitry Lychagin86cbec52017-06-19 11:16:14 -0700614 <groupId>org.apache.hyracks</groupId>
615 <artifactId>hyracks-ipc</artifactId>
616 </dependency>
617 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500618 <groupId>javax.xml.bind</groupId>
619 <artifactId>jaxb-api</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500620 </dependency>
621 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500622 <groupId>org.apache.commons</groupId>
623 <artifactId>commons-compress</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500624 </dependency>
625 <dependency>
626 <groupId>org.apache.hyracks</groupId>
627 <artifactId>algebricks-runtime</artifactId>
628 </dependency>
629 <dependency>
630 <groupId>org.apache.httpcomponents</groupId>
631 <artifactId>httpcore</artifactId>
632 </dependency>
633 <dependency>
Till Westmann452ec9f62017-02-23 09:12:50 -0800634 <groupId>org.apache.httpcomponents</groupId>
635 <artifactId>httpclient</artifactId>
636 </dependency>
637 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500638 <groupId>org.apache.asterix</groupId>
639 <artifactId>asterix-lang-common</artifactId>
640 <version>${project.version}</version>
641 </dependency>
642 <dependency>
643 <groupId>org.apache.hyracks</groupId>
644 <artifactId>hyracks-storage-am-lsm-common</artifactId>
645 </dependency>
646 <dependency>
647 <groupId>org.apache.asterix</groupId>
648 <artifactId>asterix-runtime</artifactId>
649 <version>${project.version}</version>
650 </dependency>
651 <dependency>
652 <groupId>org.apache.hyracks</groupId>
653 <artifactId>hyracks-storage-common</artifactId>
654 </dependency>
655 <dependency>
656 <groupId>org.apache.hyracks</groupId>
657 <artifactId>algebricks-common</artifactId>
658 </dependency>
659 <dependency>
660 <groupId>org.apache.asterix</groupId>
661 <artifactId>asterix-lang-sqlpp</artifactId>
662 <version>${project.version}</version>
663 </dependency>
664 <dependency>
665 <groupId>org.apache.hyracks</groupId>
666 <artifactId>hyracks-util</artifactId>
667 </dependency>
668 <dependency>
669 <groupId>args4j</groupId>
670 <artifactId>args4j</artifactId>
671 </dependency>
672 <dependency>
673 <groupId>org.apache.hadoop</groupId>
674 <artifactId>hadoop-mapreduce-client-core</artifactId>
675 <scope>test</scope>
676 </dependency>
677 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500678 <groupId>org.apache.commons</groupId>
679 <artifactId>commons-lang3</artifactId>
680 </dependency>
681 <dependency>
682 <groupId>junit</groupId>
683 <artifactId>junit</artifactId>
684 <scope>test</scope>
685 </dependency>
686 <dependency>
687 <groupId>org.apache.hyracks</groupId>
688 <artifactId>hyracks-data-std</artifactId>
689 </dependency>
690 <dependency>
691 <groupId>org.apache.hyracks</groupId>
692 <artifactId>hyracks-dataflow-std</artifactId>
693 </dependency>
694 <dependency>
695 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500696 <artifactId>hyracks-storage-am-btree</artifactId>
697 </dependency>
698 <dependency>
699 <groupId>com.google.guava</groupId>
700 <artifactId>guava</artifactId>
701 </dependency>
702 <dependency>
703 <groupId>org.apache.hyracks</groupId>
704 <artifactId>hyracks-control-common</artifactId>
705 </dependency>
706 <dependency>
707 <groupId>org.apache.hyracks</groupId>
708 <artifactId>hyracks-storage-am-common</artifactId>
709 </dependency>
710 <dependency>
711 <groupId>org.apache.hadoop</groupId>
712 <artifactId>hadoop-common</artifactId>
Michael Blow4ef1f252018-04-12 22:14:32 -0400713 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500714 </dependency>
715 <dependency>
716 <groupId>org.apache.asterix</groupId>
717 <artifactId>asterix-active</artifactId>
718 <version>${project.version}</version>
719 </dependency>
720 <dependency>
721 <groupId>org.apache.hadoop</groupId>
722 <artifactId>hadoop-hdfs</artifactId>
Michael Blow4ef1f252018-04-12 22:14:32 -0400723 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500724 </dependency>
725 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800726 <groupId>com.fasterxml.jackson.core</groupId>
727 <artifactId>jackson-databind</artifactId>
728 </dependency>
729 <dependency>
730 <groupId>com.fasterxml.jackson.core</groupId>
731 <artifactId>jackson-core</artifactId>
732 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500733 <dependency>
734 <groupId>org.apache.hadoop</groupId>
735 <artifactId>hadoop-common</artifactId>
736 <classifier>tests</classifier>
737 <scope>test</scope>
738 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800739 <dependency>
740 <groupId>io.netty</groupId>
741 <artifactId>netty-all</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800742 </dependency>
Abdullah Alamoudib2e50b72017-10-03 10:10:54 -0700743 <dependency>
744 <groupId>org.apache.hyracks</groupId>
745 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
746 <type>test-jar</type>
747 <scope>test</scope>
748 </dependency>
Murtadha Hubailc90f1e32017-11-10 18:17:29 +0300749 <dependency>
750 <groupId>org.apache.hyracks</groupId>
751 <artifactId>hyracks-comm</artifactId>
752 <version>${hyracks.version}</version>
753 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300754 <dependency>
755 <groupId>org.apache.logging.log4j</groupId>
756 <artifactId>log4j-api</artifactId>
757 </dependency>
758 <dependency>
759 <groupId>org.apache.logging.log4j</groupId>
Murtadha Hubail56295d92017-12-20 02:18:37 +0300760 <artifactId>log4j-jul</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500761 <version>2.12.1</version>
Murtadha Hubail56295d92017-12-20 02:18:37 +0300762 </dependency>
Michael Blowb8307792018-03-13 20:45:51 -0700763 <dependency>
764 <groupId>org.apache.asterix</groupId>
765 <artifactId>asterix-fuzzyjoin</artifactId>
766 <version>${project.version}</version>
767 <scope>test</scope>
768 </dependency>
Ahmed Eldawy8cc88252018-03-23 18:19:17 -0700769 <dependency>
770 <groupId>org.apache.asterix</groupId>
771 <artifactId>asterix-geo</artifactId>
772 <version>${project.version}</version>
773 <scope>test</scope>
774 </dependency>
Murtadha Hubail11f7c342018-07-15 10:55:47 +0300775 <dependency>
776 <groupId>org.apache.hyracks</groupId>
777 <artifactId>hyracks-storage-am-rtree</artifactId>
778 <version>${hyracks.version}</version>
779 </dependency>
780 <dependency>
781 <groupId>org.apache.hyracks</groupId>
782 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
783 <version>${hyracks.version}</version>
784 </dependency>
785 <dependency>
786 <groupId>org.apache.hyracks</groupId>
787 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
Murtadha Hubail11f7c342018-07-15 10:55:47 +0300788 </dependency>
Hussain Towaileb76e3cec2019-04-29 22:14:37 +0300789 <dependency>
Dmitry Lychaginac98f482020-03-31 12:26:40 -0700790 <groupId>org.testcontainers</groupId>
791 <artifactId>postgresql</artifactId>
792 <scope>test</scope>
793 </dependency>
794 <dependency>
795 <groupId>org.postgresql</groupId>
796 <artifactId>postgresql</artifactId>
797 <scope>test</scope>
798 </dependency>
799 <dependency>
Hussain Towaileb76e3cec2019-04-29 22:14:37 +0300800 <groupId>com.teradata.tpcds</groupId>
801 <artifactId>tpcds</artifactId>
802 <version>1.2</version>
803 <exclusions>
804 <exclusion>
805 <groupId>org.testng</groupId>
806 <artifactId>testng</artifactId>
807 </exclusion>
808 <exclusion>
809 <groupId>com.google.code.findbugs</groupId>
810 <artifactId>annotations</artifactId>
811 </exclusion>
812 <exclusion>
813 <groupId>io.airlift</groupId>
814 <artifactId>airline</artifactId>
815 </exclusion>
816 <exclusion>
817 <groupId>javax.inject</groupId>
818 <artifactId>javax.inject</artifactId>
819 </exclusion>
820 </exclusions>
821 </dependency>
Ian Maxon694ffd12020-03-09 19:08:05 -0700822 <dependency>
823 <groupId>org.mindrot</groupId>
824 <artifactId>jbcrypt</artifactId>
825 </dependency>
826 <dependency>
827 <groupId>org.apache.commons</groupId>
828 <artifactId>commons-csv</artifactId>
829 </dependency>
Ian Maxona28ddb72020-04-28 15:36:30 -0700830 <dependency>
831 <groupId>org.apache.httpcomponents</groupId>
832 <artifactId>httpmime</artifactId>
833 <scope>test</scope>
834 </dependency>
Hussain Towailebbc0f7e02020-03-30 16:10:30 +0300835 <!-- AWS -->
836 <dependency>
837 <groupId>software.amazon.awssdk</groupId>
838 <artifactId>sdk-core</artifactId>
839 <scope>test</scope>
840 </dependency>
841 <dependency>
842 <groupId>software.amazon.awssdk</groupId>
843 <artifactId>s3</artifactId>
844 <scope>test</scope>
845 </dependency>
846 <dependency>
847 <groupId>software.amazon.awssdk</groupId>
848 <artifactId>regions</artifactId>
849 <scope>test</scope>
850 </dependency>
851 <dependency>
852 <groupId>software.amazon.awssdk</groupId>
853 <artifactId>auth</artifactId>
854 <scope>test</scope>
855 </dependency>
856 <!-- Mock for AWS S3 -->
857 <dependency>
858 <groupId>io.findify</groupId>
859 <artifactId>s3mock_2.12</artifactId>
860 <scope>test</scope>
861 </dependency>
862 <!-- Needed for the s3 mock -->
863 <dependency>
864 <groupId>com.typesafe.akka</groupId>
865 <artifactId>akka-http-core_2.12</artifactId>
866 <scope>test</scope>
867 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700868 <dependency>
869 <groupId>org.apache.logging.log4j</groupId>
870 <artifactId>log4j-1.2-api</artifactId>
871 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700872 </dependencies>
Ian Maxon5dcf1392017-12-14 12:27:45 -0800873</project>