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 | 0948b24 | 2017-11-20 15:56:08 -0800 | [diff] [blame] | 25 | <version>0.9.4-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> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 40 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 41 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 49 | <goal>test-jar</goal> |
| 50 | </goals> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | <plugin> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 55 | <groupId>pl.project13.maven</groupId> |
| 56 | <artifactId>git-commit-id-plugin</artifactId> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 57 | <executions> |
| 58 | <execution> |
| 59 | <goals> |
| 60 | <goal>revision</goal> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 64 | <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 Blow | e2cf491 | 2017-01-18 15:39:40 -0500 | [diff] [blame] | 76 | |
| 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 Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 80 | </configuration> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 81 | </plugin> |
| 82 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 83 | <artifactId>maven-resources-plugin</artifactId> |
| 84 | <executions> |
| 85 | <execution> |
Ildar Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 86 | <id>copy-external-data-resources</id> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 87 | <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 Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 98 | <include>change_feed.csv</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 99 | </includes> |
| 100 | </resource> |
| 101 | </resources> |
| 102 | </configuration> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | </plugin> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 106 | <plugin> |
| 107 | <groupId>org.apache.asterix</groupId> |
| 108 | <artifactId>asterix-test-datagenerator-maven-plugin</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 109 | <version>${project.version}</version> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 110 | <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 Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 125 | <skip>${skip.testResources}</skip> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 126 | </configuration> |
| 127 | </execution> |
| 128 | </executions> |
| 129 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 130 | <plugin> |
| 131 | <groupId>org.apache.maven.plugins</groupId> |
| 132 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 133 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 148 | <configuration> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 149 | <ignoredUsedUndeclaredDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 150 | <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency> |
| 151 | <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency> |
| 152 | </ignoredUsedUndeclaredDependencies> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 153 | <usedDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 154 | <usedDependency>org.apache.hadoop:hadoop-common</usedDependency> |
Michael Blow | b830779 | 2018-03-13 20:45:51 -0700 | [diff] [blame^] | 155 | <usedDependency>org.apache.asterix:asterix-fuzzyjoin</usedDependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 156 | </usedDependencies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 157 | <ignoredUnusedDeclaredDependencies> |
| 158 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency> |
Michael Blow | c07a344 | 2017-04-11 19:46:33 -0400 | [diff] [blame] | 159 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 160 | </ignoredUnusedDeclaredDependencies> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 161 | </configuration> |
| 162 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 163 | <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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 175 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 176 | </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 Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 182 | <exclude>**/data/**</exclude> |
| 183 | <exclude>src/test//resources/**/data/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 184 | <exclude>src/main/resources/queryui/**</exclude> |
| 185 | <exclude>src/main/resources/webui/**</exclude> |
| 186 | <exclude>src/test/resources/**/only*.xml</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 187 | <exclude>src/main/resources/sdk/**</exclude> |
Emilio Jose Coronado Lopez | 1cb814b | 2017-12-29 21:19:26 +0100 | [diff] [blame] | 188 | <exclude>src/main/resources/dashboard/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 189 | </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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 201 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 202 | <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 Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 219 | <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 220 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 239 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 240 | <pluginManagement> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 241 | <plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 242 | <!--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] | 243 | <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 Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 254 | <versionRange>[0.0,)</versionRange> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 255 | <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 Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 268 | </pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 269 | </build> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 270 | <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 Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 278 | <configuration> |
| 279 | <skip>true</skip> |
| 280 | </configuration> |
| 281 | </plugin> |
| 282 | </plugins> |
| 283 | </build> |
| 284 | </profile> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 285 | <profile> |
| 286 | <id>asterix-gerrit-asterix-app</id> |
| 287 | <properties> |
Michael Blow | e00e1ff | 2018-01-22 17:05:48 -0500 | [diff] [blame] | 288 | <test.excludes>**/SqlppExecutionWithCancellationTest.java,**/DmlTest.java,**/RepeatedTest.java,**/SqlppExecutionTest.java</test.excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 289 | </properties> |
Michael Blow | e00e1ff | 2018-01-22 17:05:48 -0500 | [diff] [blame] | 290 | <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 Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 319 | </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 Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 342 | </profiles> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 343 | <dependencies> |
| 344 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 345 | <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 Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 361 | <groupId>org.apache.hyracks</groupId> |
| 362 | <artifactId>hyracks-api</artifactId> |
| 363 | </dependency> |
| 364 | <dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 365 | <groupId>org.apache.hyracks</groupId> |
| 366 | <artifactId>hyracks-http</artifactId> |
| 367 | </dependency> |
| 368 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 369 | <groupId>org.apache.asterix</groupId> |
| 370 | <artifactId>asterix-algebra</artifactId> |
| 371 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 372 | </dependency> |
| 373 | <dependency> |
| 374 | <groupId>org.apache.asterix</groupId> |
| 375 | <artifactId>asterix-om</artifactId> |
| 376 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 377 | </dependency> |
| 378 | <dependency> |
| 379 | <groupId>org.apache.asterix</groupId> |
| 380 | <artifactId>asterix-metadata</artifactId> |
| 381 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 382 | </dependency> |
| 383 | <dependency> |
| 384 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 385 | <artifactId>asterix-common</artifactId> |
| 386 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 387 | </dependency> |
| 388 | <dependency> |
| 389 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | a7e8dbe | 2018-01-05 17:13:36 -0800 | [diff] [blame] | 390 | <artifactId>asterix-dashboard</artifactId> |
| 391 | <version>${project.version}</version> |
| 392 | </dependency> |
| 393 | <dependency> |
| 394 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 395 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 404 | </dependency> |
| 405 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 406 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 418 | <groupId>org.apache.asterix</groupId> |
| 419 | <artifactId>asterix-replication</artifactId> |
| 420 | <version>${project.version}</version> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 421 | </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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 428 | </dependency> |
| 429 | <dependency> |
| 430 | <groupId>org.apache.asterix</groupId> |
| 431 | <artifactId>asterix-external-data</artifactId> |
| 432 | <version>${project.version}</version> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 433 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 441 | </dependency> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 442 | <dependency> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 443 | <groupId>org.apache.hyracks</groupId> |
| 444 | <artifactId>hyracks-test-support</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 445 | <scope>test</scope> |
| 446 | </dependency> |
| 447 | <dependency> |
| 448 | <groupId>org.apache.hyracks</groupId> |
| 449 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 450 | <type>test-jar</type> |
| 451 | <scope>test</scope> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 452 | </dependency> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 453 | <dependency> |
| 454 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 455 | <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 Bu | 80e6201 | 2017-01-20 20:43:31 -0800 | [diff] [blame] | 461 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 462 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 477 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 478 | <artifactId>hadoop-hdfs</artifactId> |
| 479 | <classifier>tests</classifier> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 480 | <scope>test</scope> |
| 481 | </dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 482 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 483 | <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 Lychagin | 86cbec5 | 2017-06-19 11:16:14 -0700 | [diff] [blame] | 495 | <groupId>org.apache.hyracks</groupId> |
| 496 | <artifactId>hyracks-ipc</artifactId> |
| 497 | </dependency> |
| 498 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 499 | <groupId>javax.xml.bind</groupId> |
| 500 | <artifactId>jaxb-api</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 501 | <scope>test</scope> |
| 502 | </dependency> |
| 503 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 504 | <groupId>org.apache.commons</groupId> |
| 505 | <artifactId>commons-compress</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 506 | </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 Westmann | 452ec9f6 | 2017-02-23 09:12:50 -0800 | [diff] [blame] | 516 | <groupId>org.apache.httpcomponents</groupId> |
| 517 | <artifactId>httpclient</artifactId> |
| 518 | </dependency> |
| 519 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 520 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 560 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 582 | <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 Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 610 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 617 | <dependency> |
| 618 | <groupId>org.apache.hadoop</groupId> |
| 619 | <artifactId>hadoop-common</artifactId> |
| 620 | <classifier>tests</classifier> |
| 621 | <scope>test</scope> |
| 622 | </dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 623 | <dependency> |
| 624 | <groupId>io.netty</groupId> |
| 625 | <artifactId>netty-all</artifactId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 626 | </dependency> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 627 | <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 Hubail | c90f1e3 | 2017-11-10 18:17:29 +0300 | [diff] [blame] | 633 | <dependency> |
| 634 | <groupId>org.apache.hyracks</groupId> |
| 635 | <artifactId>hyracks-comm</artifactId> |
| 636 | <version>${hyracks.version}</version> |
| 637 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 638 | <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 Hubail | 56295d9 | 2017-12-20 02:18:37 +0300 | [diff] [blame] | 644 | <artifactId>log4j-jul</artifactId> |
| 645 | <version>2.10.0</version> |
| 646 | </dependency> |
Michael Blow | b830779 | 2018-03-13 20:45:51 -0700 | [diff] [blame^] | 647 | <dependency> |
| 648 | <groupId>org.apache.asterix</groupId> |
| 649 | <artifactId>asterix-fuzzyjoin</artifactId> |
| 650 | <version>${project.version}</version> |
| 651 | <scope>test</scope> |
| 652 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 653 | </dependencies> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 654 | </project> |