Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! 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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 19 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <artifactId>apache-asterixdb</artifactId> |
| 24 | <groupId>org.apache.asterix</groupId> |
AsterixDB Jenkins | 478eccb | 2018-08-31 14:57:31 -0700 | [diff] [blame] | 25 | <version>0.9.5-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 26 | </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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 36 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 37 | <root.dir>${basedir}/..</root.dir> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 38 | <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory> |
Michael Blow | 98526fe | 2016-08-22 19:54:07 -0400 | [diff] [blame] | 39 | <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 40 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 42 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 43 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 51 | <goal>test-jar</goal> |
| 52 | </goals> |
| 53 | </execution> |
| 54 | </executions> |
| 55 | </plugin> |
| 56 | <plugin> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 57 | <groupId>pl.project13.maven</groupId> |
| 58 | <artifactId>git-commit-id-plugin</artifactId> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 59 | <executions> |
| 60 | <execution> |
| 61 | <goals> |
| 62 | <goal>revision</goal> |
| 63 | </goals> |
| 64 | </execution> |
| 65 | </executions> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 66 | <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 Blow | e2cf491 | 2017-01-18 15:39:40 -0500 | [diff] [blame] | 78 | |
| 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 Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 82 | </configuration> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 83 | </plugin> |
| 84 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 85 | <artifactId>maven-resources-plugin</artifactId> |
| 86 | <executions> |
| 87 | <execution> |
Ildar Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 88 | <id>copy-external-data-resources</id> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 89 | <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 Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 100 | <include>change_feed.csv</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 101 | </includes> |
| 102 | </resource> |
| 103 | </resources> |
| 104 | </configuration> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 108 | <plugin> |
| 109 | <groupId>org.apache.asterix</groupId> |
| 110 | <artifactId>asterix-test-datagenerator-maven-plugin</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 111 | <version>${project.version}</version> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 112 | <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 Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 127 | <skip>${skip.testResources}</skip> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 128 | </configuration> |
| 129 | </execution> |
| 130 | </executions> |
| 131 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 132 | <plugin> |
| 133 | <groupId>org.apache.maven.plugins</groupId> |
| 134 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 135 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 150 | <configuration> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 151 | <ignoredUsedUndeclaredDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 152 | <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency> |
| 153 | <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency> |
| 154 | </ignoredUsedUndeclaredDependencies> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 155 | <usedDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 156 | <usedDependency>org.apache.hadoop:hadoop-common</usedDependency> |
Michael Blow | b830779 | 2018-03-13 20:45:51 -0700 | [diff] [blame] | 157 | <usedDependency>org.apache.asterix:asterix-fuzzyjoin</usedDependency> |
Ahmed Eldawy | 8cc8825 | 2018-03-23 18:19:17 -0700 | [diff] [blame] | 158 | <usedDependency>org.apache.asterix:asterix-geo</usedDependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 159 | </usedDependencies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 160 | <ignoredUnusedDeclaredDependencies> |
| 161 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency> |
Michael Blow | c07a344 | 2017-04-11 19:46:33 -0400 | [diff] [blame] | 162 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 163 | <ignoredUnusedDeclaredDependency>org.postgresql:postgresql:jar:*</ignoredUnusedDeclaredDependency> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 164 | </ignoredUnusedDeclaredDependencies> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 165 | </configuration> |
| 166 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 167 | <plugin> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 168 | <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 Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 255 | <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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 266 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 267 | </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 Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 273 | <exclude>**/data/**</exclude> |
| 274 | <exclude>src/test//resources/**/data/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 275 | <exclude>src/main/resources/queryui/**</exclude> |
| 276 | <exclude>src/main/resources/webui/**</exclude> |
| 277 | <exclude>src/test/resources/**/only*.xml</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 278 | <exclude>src/main/resources/sdk/**</exclude> |
Emilio Jose Coronado Lopez | 1cb814b | 2017-12-29 21:19:26 +0100 | [diff] [blame] | 279 | <exclude>src/main/resources/dashboard/**</exclude> |
Murtadha Hubail | 595a0f3 | 2018-12-09 03:43:12 +0300 | [diff] [blame] | 280 | <exclude>src/test/resources/security/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 281 | </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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 293 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 294 | <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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 311 | <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 312 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 331 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 332 | <pluginManagement> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 333 | <plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 334 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 335 | <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 Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 346 | <versionRange>[0.0,)</versionRange> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 347 | <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 Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 360 | </pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 361 | </build> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 362 | <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 Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 370 | <configuration> |
| 371 | <skip>true</skip> |
| 372 | </configuration> |
| 373 | </plugin> |
| 374 | </plugins> |
| 375 | </build> |
| 376 | </profile> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 377 | <profile> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 378 | <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 Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 390 | <id>asterix-gerrit-asterix-app</id> |
| 391 | <properties> |
Michael Blow | 97e589d | 2019-02-15 18:57:27 -0500 | [diff] [blame] | 392 | <test.excludes>**/SqlppExecutionWithCancellationTest.java,**/DmlTest.java,**/RepeatedTest.java,**/SqlppExecutionTest.java,**/AqlExecutionTest.java,**/*Compression*Test.java,**/*Ssl*Test.java</test.excludes> |
Michael Blow | 3be5c45 | 2019-02-14 16:13:46 -0500 | [diff] [blame] | 393 | <itest.excludes>**/*.java</itest.excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 394 | </properties> |
Michael Blow | e00e1ff | 2018-01-22 17:05:48 -0500 | [diff] [blame] | 395 | <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 Blow | e00e1ff | 2018-01-22 17:05:48 -0500 | [diff] [blame] | 404 | <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 Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 421 | </profile> |
| 422 | <profile> |
| 423 | <id>asterix-gerrit-asterix-app-sql-execution</id> |
| 424 | <properties> |
Michael Blow | 3be5c45 | 2019-02-14 16:13:46 -0500 | [diff] [blame] | 425 | <test.excludes>**/*.java</test.excludes> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 426 | <itest.includes>**/SqlppExecution*IT.java,**/ExternalPythonFunction*IT.java</itest.includes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 427 | <failIfNoTests>false</failIfNoTests> |
| 428 | </properties> |
| 429 | </profile> |
| 430 | <profile> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 431 | <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 Blow | 9b79e73 | 2019-02-07 09:26:11 -0500 | [diff] [blame] | 439 | <id>asterix-gerrit-ssl-compression</id> |
| 440 | <properties> |
| 441 | <test.includes>**/*Compression*Test.java,**/*Ssl*Test.java</test.includes> |
Michael Blow | 3be5c45 | 2019-02-14 16:13:46 -0500 | [diff] [blame] | 442 | <itest.excludes>**/*.java</itest.excludes> |
Michael Blow | 9b79e73 | 2019-02-07 09:26:11 -0500 | [diff] [blame] | 443 | <failIfNoTests>false</failIfNoTests> |
| 444 | </properties> |
| 445 | </profile> |
| 446 | <profile> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 447 | <id>asterix-gerrit-verify-asterix-app</id> |
| 448 | <properties> |
Michael Blow | 1298b6c | 2019-02-13 08:49:42 -0500 | [diff] [blame] | 449 | <test.includes>**/AqlExecutionTest.java</test.includes> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 450 | <itest.excludes>**/External*IT.java,**/SqlppExecution*IT.java,**/SqlppRQG*IT.java,**/RebalanceWithCancellationIT.java</itest.excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 451 | <failIfNoTests>false</failIfNoTests> |
| 452 | </properties> |
| 453 | </profile> |
| 454 | <profile> |
| 455 | <id>asterix-gerrit-rebalance-cancellation</id> |
| 456 | <properties> |
Michael Blow | 3be5c45 | 2019-02-14 16:13:46 -0500 | [diff] [blame] | 457 | <test.excludes>**/*.java</test.excludes> |
| 458 | <itest.includes>**/RebalanceWithCancellationIT.java</itest.includes> |
| 459 | <failIfNoTests>false</failIfNoTests> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 460 | </properties> |
| 461 | </profile> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 462 | </profiles> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 463 | <dependencies> |
| 464 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 465 | <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 Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 481 | <groupId>org.apache.hyracks</groupId> |
| 482 | <artifactId>hyracks-api</artifactId> |
| 483 | </dependency> |
| 484 | <dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 485 | <groupId>org.apache.hyracks</groupId> |
| 486 | <artifactId>hyracks-http</artifactId> |
| 487 | </dependency> |
| 488 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 489 | <groupId>org.apache.asterix</groupId> |
| 490 | <artifactId>asterix-algebra</artifactId> |
| 491 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 492 | </dependency> |
| 493 | <dependency> |
| 494 | <groupId>org.apache.asterix</groupId> |
| 495 | <artifactId>asterix-om</artifactId> |
| 496 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 497 | </dependency> |
| 498 | <dependency> |
| 499 | <groupId>org.apache.asterix</groupId> |
| 500 | <artifactId>asterix-metadata</artifactId> |
| 501 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 502 | </dependency> |
| 503 | <dependency> |
| 504 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 505 | <artifactId>asterix-common</artifactId> |
| 506 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 507 | </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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 519 | </dependency> |
| 520 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 521 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 533 | <groupId>org.apache.asterix</groupId> |
| 534 | <artifactId>asterix-replication</artifactId> |
| 535 | <version>${project.version}</version> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 536 | </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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 543 | </dependency> |
| 544 | <dependency> |
| 545 | <groupId>org.apache.asterix</groupId> |
| 546 | <artifactId>asterix-external-data</artifactId> |
| 547 | <version>${project.version}</version> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 548 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 556 | </dependency> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 557 | <dependency> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 558 | <groupId>org.apache.hyracks</groupId> |
| 559 | <artifactId>hyracks-test-support</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 560 | <scope>test</scope> |
| 561 | </dependency> |
| 562 | <dependency> |
| 563 | <groupId>org.apache.hyracks</groupId> |
| 564 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 565 | <type>test-jar</type> |
| 566 | <scope>test</scope> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 567 | </dependency> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 568 | <dependency> |
| 569 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 570 | <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 Bu | 80e6201 | 2017-01-20 20:43:31 -0800 | [diff] [blame] | 576 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 577 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 592 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 593 | <artifactId>hadoop-hdfs</artifactId> |
| 594 | <classifier>tests</classifier> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 595 | <scope>test</scope> |
| 596 | </dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 597 | <dependency> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 598 | <groupId>org.apache.hadoop</groupId> |
| 599 | <artifactId>hadoop-hdfs-client</artifactId> |
| 600 | </dependency> |
| 601 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 602 | <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 Lychagin | 86cbec5 | 2017-06-19 11:16:14 -0700 | [diff] [blame] | 614 | <groupId>org.apache.hyracks</groupId> |
| 615 | <artifactId>hyracks-ipc</artifactId> |
| 616 | </dependency> |
| 617 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 618 | <groupId>javax.xml.bind</groupId> |
| 619 | <artifactId>jaxb-api</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 620 | </dependency> |
| 621 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 622 | <groupId>org.apache.commons</groupId> |
| 623 | <artifactId>commons-compress</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 624 | </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 Westmann | 452ec9f6 | 2017-02-23 09:12:50 -0800 | [diff] [blame] | 634 | <groupId>org.apache.httpcomponents</groupId> |
| 635 | <artifactId>httpclient</artifactId> |
| 636 | </dependency> |
| 637 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 638 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 678 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 696 | <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 Blow | 4ef1f25 | 2018-04-12 22:14:32 -0400 | [diff] [blame] | 713 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 714 | </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 Blow | 4ef1f25 | 2018-04-12 22:14:32 -0400 | [diff] [blame] | 723 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 724 | </dependency> |
| 725 | <dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 726 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 733 | <dependency> |
| 734 | <groupId>org.apache.hadoop</groupId> |
| 735 | <artifactId>hadoop-common</artifactId> |
| 736 | <classifier>tests</classifier> |
| 737 | <scope>test</scope> |
| 738 | </dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 739 | <dependency> |
| 740 | <groupId>io.netty</groupId> |
| 741 | <artifactId>netty-all</artifactId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 742 | </dependency> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 743 | <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 Hubail | c90f1e3 | 2017-11-10 18:17:29 +0300 | [diff] [blame] | 749 | <dependency> |
| 750 | <groupId>org.apache.hyracks</groupId> |
| 751 | <artifactId>hyracks-comm</artifactId> |
| 752 | <version>${hyracks.version}</version> |
| 753 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 754 | <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 Hubail | 56295d9 | 2017-12-20 02:18:37 +0300 | [diff] [blame] | 760 | <artifactId>log4j-jul</artifactId> |
Michael Blow | b8df1c5 | 2019-11-08 14:15:42 -0500 | [diff] [blame] | 761 | <version>2.12.1</version> |
Murtadha Hubail | 56295d9 | 2017-12-20 02:18:37 +0300 | [diff] [blame] | 762 | </dependency> |
Michael Blow | b830779 | 2018-03-13 20:45:51 -0700 | [diff] [blame] | 763 | <dependency> |
| 764 | <groupId>org.apache.asterix</groupId> |
| 765 | <artifactId>asterix-fuzzyjoin</artifactId> |
| 766 | <version>${project.version}</version> |
| 767 | <scope>test</scope> |
| 768 | </dependency> |
Ahmed Eldawy | 8cc8825 | 2018-03-23 18:19:17 -0700 | [diff] [blame] | 769 | <dependency> |
| 770 | <groupId>org.apache.asterix</groupId> |
| 771 | <artifactId>asterix-geo</artifactId> |
| 772 | <version>${project.version}</version> |
| 773 | <scope>test</scope> |
| 774 | </dependency> |
Murtadha Hubail | 11f7c34 | 2018-07-15 10:55:47 +0300 | [diff] [blame] | 775 | <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 Hubail | 11f7c34 | 2018-07-15 10:55:47 +0300 | [diff] [blame] | 788 | </dependency> |
Hussain Towaileb | 76e3cec | 2019-04-29 22:14:37 +0300 | [diff] [blame] | 789 | <dependency> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 790 | <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 Towaileb | 76e3cec | 2019-04-29 22:14:37 +0300 | [diff] [blame] | 800 | <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 Maxon | 694ffd1 | 2020-03-09 19:08:05 -0700 | [diff] [blame] | 822 | <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 Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 830 | <dependency> |
| 831 | <groupId>org.apache.httpcomponents</groupId> |
| 832 | <artifactId>httpmime</artifactId> |
| 833 | <scope>test</scope> |
| 834 | </dependency> |
Hussain Towaileb | bc0f7e0 | 2020-03-30 16:10:30 +0300 | [diff] [blame] | 835 | <!-- 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 Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame^] | 868 | <dependency> |
| 869 | <groupId>org.apache.logging.log4j</groupId> |
| 870 | <artifactId>log4j-1.2-api</artifactId> |
| 871 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 872 | </dependencies> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 873 | </project> |