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 | 92a9a65 | 2017-08-07 17:23:07 -0700 | [diff] [blame] | 25 | <version>0.9.3-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> |
| 37 | <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory> |
Michael Blow | 98526fe | 2016-08-22 19:54:07 -0400 | [diff] [blame] | 38 | <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 39 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.maven.plugins</groupId> |
| 44 | <artifactId>maven-jar-plugin</artifactId> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <goals> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 48 | <goal>test-jar</goal> |
| 49 | </goals> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
| 53 | <plugin> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 54 | <groupId>pl.project13.maven</groupId> |
| 55 | <artifactId>git-commit-id-plugin</artifactId> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 56 | <executions> |
| 57 | <execution> |
| 58 | <goals> |
| 59 | <goal>revision</goal> |
| 60 | </goals> |
| 61 | </execution> |
| 62 | </executions> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 63 | <configuration> |
| 64 | <!-- |
| 65 | If you'd like to tell the plugin where your .git directory is, |
| 66 | use this setting, otherwise we'll perform a search trying to |
| 67 | figure out the right directory. It's better to add it explicite IMHO. |
| 68 | --> |
| 69 | <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> |
| 70 | <!-- this is false by default, forces the plugin to generate the git.properties file --> |
| 71 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
| 72 | |
| 73 | <!-- The path for the to be generated properties file, it's relative to ${project.basedir} --> |
| 74 | <generateGitPropertiesFilename>./target/classes/git.properties</generateGitPropertiesFilename> |
Michael Blow | e2cf491 | 2017-01-18 15:39:40 -0500 | [diff] [blame] | 75 | |
| 76 | <!-- there is no .git directory when building from a source assembly- a static git.properties file (generated |
| 77 | at source assembly time) is used in this case --> |
| 78 | <failOnNoGitDirectory>false</failOnNoGitDirectory> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 79 | </configuration> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 80 | </plugin> |
| 81 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 82 | <artifactId>maven-resources-plugin</artifactId> |
| 83 | <executions> |
| 84 | <execution> |
Ildar Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 85 | <id>copy-external-data-resources</id> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 86 | <phase>generate-resources</phase> |
| 87 | <goals> |
| 88 | <goal>copy-resources</goal> |
| 89 | </goals> |
| 90 | <configuration> |
| 91 | <outputDirectory>target/data/csv</outputDirectory> |
| 92 | <overwrite>true</overwrite> |
| 93 | <resources> |
| 94 | <resource> |
| 95 | <directory>../asterix-external-data/src/test/resources</directory> |
| 96 | <includes> |
Ildar Absalyamov | d195de1 | 2016-12-06 23:09:20 -0800 | [diff] [blame] | 97 | <include>change_feed.csv</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 98 | </includes> |
| 99 | </resource> |
| 100 | </resources> |
| 101 | </configuration> |
| 102 | </execution> |
| 103 | </executions> |
| 104 | </plugin> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 105 | <plugin> |
| 106 | <groupId>org.apache.asterix</groupId> |
| 107 | <artifactId>asterix-test-datagenerator-maven-plugin</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 108 | <version>${project.version}</version> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 109 | <executions> |
| 110 | <execution> |
| 111 | <id>replace-template-data</id> |
| 112 | <phase>process-test-resources</phase> |
| 113 | <goals> |
| 114 | <goal>generate-testdata</goal> |
| 115 | </goals> |
| 116 | <configuration> |
| 117 | <inputFiles> |
| 118 | <directory>data</directory> |
| 119 | <includes> |
| 120 | <include>**/*.template</include> |
| 121 | </includes> |
| 122 | </inputFiles> |
| 123 | <outputDir>target/data</outputDir> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 124 | <skip>${skip.testResources}</skip> |
Michael Blow | e5bff31 | 2016-05-16 17:51:02 -0700 | [diff] [blame] | 125 | </configuration> |
| 126 | </execution> |
| 127 | </executions> |
| 128 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 129 | <plugin> |
| 130 | <groupId>org.apache.maven.plugins</groupId> |
| 131 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 132 | <executions> |
| 133 | <execution> |
| 134 | <id>copy-external-testlib</id> |
| 135 | <phase>pre-integration-test</phase> |
| 136 | <goals> |
| 137 | <goal>copy-dependencies</goal> |
| 138 | </goals> |
| 139 | <configuration> |
| 140 | <includeClassifiers>testlib</includeClassifiers> |
| 141 | <outputDirectory>target/data/externallib</outputDirectory> |
| 142 | <overwrite>true</overwrite> |
| 143 | <stripVersion>true</stripVersion> |
| 144 | </configuration> |
| 145 | </execution> |
| 146 | </executions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 147 | <configuration> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 148 | <ignoredUsedUndeclaredDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 149 | <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency> |
| 150 | <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency> |
| 151 | </ignoredUsedUndeclaredDependencies> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 152 | <usedDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 153 | <usedDependency>org.apache.hadoop:hadoop-common</usedDependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 154 | </usedDependencies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 155 | <ignoredUnusedDeclaredDependencies> |
| 156 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency> |
Michael Blow | c07a344 | 2017-04-11 19:46:33 -0400 | [diff] [blame] | 157 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 158 | </ignoredUnusedDeclaredDependencies> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 159 | </configuration> |
| 160 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 161 | <plugin> |
| 162 | <groupId>org.apache.rat</groupId> |
| 163 | <artifactId>apache-rat-plugin</artifactId> |
| 164 | <executions> |
| 165 | <execution> |
| 166 | <id>default</id> |
| 167 | <phase>validate</phase> |
| 168 | <goals> |
| 169 | <goal>check</goal> |
| 170 | </goals> |
| 171 | <configuration> |
| 172 | <licenses combine.children="append"> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 173 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 174 | </licenses> |
| 175 | <excludes combine.children="append"> |
| 176 | <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude> |
| 177 | <exclude>src/test/resources/**/results/**</exclude> |
| 178 | <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude> |
| 179 | <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 180 | <exclude>**/data/**</exclude> |
| 181 | <exclude>src/test//resources/**/data/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 182 | <exclude>src/main/resources/queryui/**</exclude> |
| 183 | <exclude>src/main/resources/webui/**</exclude> |
| 184 | <exclude>src/test/resources/**/only*.xml</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 185 | <exclude>src/main/resources/sdk/**</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 186 | </excludes> |
| 187 | </configuration> |
| 188 | </execution> |
| 189 | <execution> |
| 190 | <id>webqueryui</id> |
| 191 | <phase>validate</phase> |
| 192 | <goals> |
| 193 | <goal>check</goal> |
| 194 | </goals> |
| 195 | <configuration> |
| 196 | <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile> |
| 197 | <licenses combine.children="append"> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 198 | <license implementation="org.apache.rat.analysis.license.MITLicense" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 199 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 200 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 201 | <licenseFamilyName>JQuery</licenseFamilyName> |
| 202 | <patterns>(c) jQuery Foundation | jquery.org/license</patterns> |
| 203 | </license> |
| 204 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 205 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 206 | <licenseFamilyName>Bootstrap</licenseFamilyName> |
| 207 | <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns> |
| 208 | </license> |
| 209 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 210 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 211 | <licenseFamilyName>AngularJS</licenseFamilyName> |
| 212 | <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns> |
| 213 | </license> |
| 214 | </licenses> |
| 215 | <licenseFamilies combine.children="append"> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 216 | <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" /> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 217 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 218 | <familyName>JQuery</familyName> |
| 219 | </licenseFamily> |
| 220 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 221 | <familyName>Bootstrap</familyName> |
| 222 | </licenseFamily> |
| 223 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 224 | <familyName>AngularJS</familyName> |
| 225 | </licenseFamily> |
| 226 | </licenseFamilies> |
| 227 | <includes> |
| 228 | <include>src/main/resources/queryui/**</include> |
| 229 | <include>src/main/resources/webui/**</include> |
| 230 | </includes> |
| 231 | <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes> |
| 232 | </configuration> |
| 233 | </execution> |
| 234 | </executions> |
| 235 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 236 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 237 | <pluginManagement> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 238 | <plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 239 | <!--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] | 240 | <plugin> |
| 241 | <groupId>org.eclipse.m2e</groupId> |
| 242 | <artifactId>lifecycle-mapping</artifactId> |
| 243 | <version>1.0.0</version> |
| 244 | <configuration> |
| 245 | <lifecycleMappingMetadata> |
| 246 | <pluginExecutions> |
| 247 | <pluginExecution> |
| 248 | <pluginExecutionFilter> |
| 249 | <groupId>org.apache.asterix</groupId> |
| 250 | <artifactId>asterix-test-datagenerator-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 251 | <versionRange>[0.0,)</versionRange> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 252 | <goals> |
| 253 | <goal>generate-testdata</goal> |
| 254 | </goals> |
| 255 | </pluginExecutionFilter> |
| 256 | <action> |
| 257 | <ignore /> |
| 258 | </action> |
| 259 | </pluginExecution> |
| 260 | </pluginExecutions> |
| 261 | </lifecycleMappingMetadata> |
| 262 | </configuration> |
| 263 | </plugin> |
| 264 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 265 | </pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 266 | </build> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 267 | <profiles> |
| 268 | <profile> |
| 269 | <id>skip.asterix-app.tests</id> |
| 270 | <build> |
| 271 | <plugins> |
| 272 | <plugin> |
| 273 | <groupId>org.apache.maven.plugins</groupId> |
| 274 | <artifactId>maven-surefire-plugin</artifactId> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 275 | <configuration> |
| 276 | <skip>true</skip> |
| 277 | </configuration> |
| 278 | </plugin> |
| 279 | </plugins> |
| 280 | </build> |
| 281 | </profile> |
| 282 | </profiles> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 283 | <dependencies> |
| 284 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 285 | <groupId>org.apache.hyracks</groupId> |
| 286 | <artifactId>hyracks-control-cc</artifactId> |
| 287 | </dependency> |
| 288 | <dependency> |
| 289 | <groupId>org.apache.hyracks</groupId> |
| 290 | <artifactId>hyracks-control-nc</artifactId> |
| 291 | </dependency> |
| 292 | <dependency> |
| 293 | <groupId>org.apache.hyracks</groupId> |
| 294 | <artifactId>algebricks-compiler</artifactId> |
| 295 | </dependency> |
| 296 | <dependency> |
| 297 | <groupId>org.apache.hyracks</groupId> |
| 298 | <artifactId>hyracks-client</artifactId> |
| 299 | </dependency> |
| 300 | <dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 301 | <groupId>org.apache.hyracks</groupId> |
| 302 | <artifactId>hyracks-api</artifactId> |
| 303 | </dependency> |
| 304 | <dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 305 | <groupId>org.apache.hyracks</groupId> |
| 306 | <artifactId>hyracks-http</artifactId> |
| 307 | </dependency> |
| 308 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 309 | <groupId>org.apache.asterix</groupId> |
| 310 | <artifactId>asterix-algebra</artifactId> |
| 311 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>org.apache.asterix</groupId> |
| 315 | <artifactId>asterix-om</artifactId> |
| 316 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 317 | </dependency> |
| 318 | <dependency> |
| 319 | <groupId>org.apache.asterix</groupId> |
| 320 | <artifactId>asterix-metadata</artifactId> |
| 321 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 322 | </dependency> |
| 323 | <dependency> |
| 324 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 325 | <artifactId>asterix-common</artifactId> |
| 326 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 327 | </dependency> |
| 328 | <dependency> |
| 329 | <groupId>org.apache.asterix</groupId> |
| 330 | <artifactId>asterix-common</artifactId> |
| 331 | <version>${project.version}</version> |
| 332 | <type>test-jar</type> |
| 333 | <scope>test</scope> |
| 334 | </dependency> |
| 335 | <dependency> |
| 336 | <groupId>org.apache.asterix</groupId> |
| 337 | <artifactId>asterix-transactions</artifactId> |
| 338 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 339 | </dependency> |
| 340 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 341 | <groupId>org.apache.asterix</groupId> |
| 342 | <artifactId>asterix-test-framework</artifactId> |
| 343 | <version>${project.version}</version> |
| 344 | <scope>test</scope> |
| 345 | </dependency> |
| 346 | <dependency> |
| 347 | <groupId>org.mockito</groupId> |
| 348 | <artifactId>mockito-all</artifactId> |
| 349 | <version>1.10.19</version> |
| 350 | <scope>test</scope> |
| 351 | </dependency> |
| 352 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 353 | <groupId>org.apache.asterix</groupId> |
| 354 | <artifactId>asterix-replication</artifactId> |
| 355 | <version>${project.version}</version> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 356 | </dependency> |
| 357 | <dependency> |
| 358 | <groupId>org.apache.asterix</groupId> |
| 359 | <artifactId>asterix-external-data</artifactId> |
| 360 | <version>${project.version}</version> |
| 361 | <type>test-jar</type> |
| 362 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 363 | </dependency> |
| 364 | <dependency> |
| 365 | <groupId>org.apache.asterix</groupId> |
| 366 | <artifactId>asterix-external-data</artifactId> |
| 367 | <version>${project.version}</version> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 368 | <type>zip</type> |
| 369 | <classifier>testlib</classifier> |
| 370 | <scope>test</scope> |
| 371 | </dependency> |
| 372 | <dependency> |
| 373 | <groupId>org.apache.asterix</groupId> |
| 374 | <artifactId>asterix-external-data</artifactId> |
| 375 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 376 | </dependency> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 377 | <dependency> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 378 | <groupId>org.apache.hyracks</groupId> |
| 379 | <artifactId>hyracks-test-support</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 380 | <scope>test</scope> |
| 381 | </dependency> |
| 382 | <dependency> |
| 383 | <groupId>org.apache.hyracks</groupId> |
| 384 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 385 | <type>test-jar</type> |
| 386 | <scope>test</scope> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 387 | </dependency> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 388 | <dependency> |
| 389 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 390 | <artifactId>hyracks-dataflow-common</artifactId> |
| 391 | </dependency> |
| 392 | <dependency> |
| 393 | <groupId>com.e-movimento.tinytools</groupId> |
| 394 | <artifactId>privilegedaccessor</artifactId> |
| 395 | <version>1.2.2</version> |
Yingyi Bu | 80e6201 | 2017-01-20 20:43:31 -0800 | [diff] [blame] | 396 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 397 | </dependency> |
| 398 | <dependency> |
| 399 | <groupId>commons-io</groupId> |
| 400 | <artifactId>commons-io</artifactId> |
| 401 | </dependency> |
| 402 | <dependency> |
| 403 | <groupId>org.apache.asterix</groupId> |
| 404 | <artifactId>asterix-lang-aql</artifactId> |
| 405 | <version>${project.version}</version> |
| 406 | </dependency> |
| 407 | <dependency> |
| 408 | <groupId>org.apache.hyracks</groupId> |
| 409 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 410 | </dependency> |
| 411 | <dependency> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 412 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 413 | <artifactId>hadoop-hdfs</artifactId> |
| 414 | <classifier>tests</classifier> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 415 | <scope>test</scope> |
| 416 | </dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 417 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 418 | <groupId>org.apache.hyracks</groupId> |
| 419 | <artifactId>algebricks-data</artifactId> |
| 420 | </dependency> |
| 421 | <dependency> |
| 422 | <groupId>org.apache.hyracks</groupId> |
| 423 | <artifactId>algebricks-core</artifactId> |
| 424 | </dependency> |
| 425 | <dependency> |
| 426 | <groupId>org.apache.hyracks</groupId> |
| 427 | <artifactId>hyracks-net</artifactId> |
| 428 | </dependency> |
| 429 | <dependency> |
Dmitry Lychagin | 86cbec5 | 2017-06-19 11:16:14 -0700 | [diff] [blame] | 430 | <groupId>org.apache.hyracks</groupId> |
| 431 | <artifactId>hyracks-ipc</artifactId> |
| 432 | </dependency> |
| 433 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 434 | <groupId>javax.xml.bind</groupId> |
| 435 | <artifactId>jaxb-api</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 436 | <scope>test</scope> |
| 437 | </dependency> |
| 438 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 439 | <groupId>org.apache.commons</groupId> |
| 440 | <artifactId>commons-compress</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 441 | </dependency> |
| 442 | <dependency> |
| 443 | <groupId>org.apache.hyracks</groupId> |
| 444 | <artifactId>algebricks-runtime</artifactId> |
| 445 | </dependency> |
| 446 | <dependency> |
| 447 | <groupId>org.apache.httpcomponents</groupId> |
| 448 | <artifactId>httpcore</artifactId> |
| 449 | </dependency> |
| 450 | <dependency> |
Till Westmann | 452ec9f6 | 2017-02-23 09:12:50 -0800 | [diff] [blame] | 451 | <groupId>org.apache.httpcomponents</groupId> |
| 452 | <artifactId>httpclient</artifactId> |
| 453 | </dependency> |
| 454 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 455 | <groupId>org.apache.asterix</groupId> |
| 456 | <artifactId>asterix-lang-common</artifactId> |
| 457 | <version>${project.version}</version> |
| 458 | </dependency> |
| 459 | <dependency> |
| 460 | <groupId>org.apache.hyracks</groupId> |
| 461 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 462 | </dependency> |
| 463 | <dependency> |
| 464 | <groupId>org.apache.asterix</groupId> |
| 465 | <artifactId>asterix-runtime</artifactId> |
| 466 | <version>${project.version}</version> |
| 467 | </dependency> |
| 468 | <dependency> |
| 469 | <groupId>org.apache.hyracks</groupId> |
| 470 | <artifactId>hyracks-storage-common</artifactId> |
| 471 | </dependency> |
| 472 | <dependency> |
| 473 | <groupId>org.apache.hyracks</groupId> |
| 474 | <artifactId>algebricks-common</artifactId> |
| 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>org.apache.asterix</groupId> |
| 478 | <artifactId>asterix-lang-sqlpp</artifactId> |
| 479 | <version>${project.version}</version> |
| 480 | </dependency> |
| 481 | <dependency> |
| 482 | <groupId>org.apache.hyracks</groupId> |
| 483 | <artifactId>hyracks-util</artifactId> |
| 484 | </dependency> |
| 485 | <dependency> |
| 486 | <groupId>args4j</groupId> |
| 487 | <artifactId>args4j</artifactId> |
| 488 | </dependency> |
| 489 | <dependency> |
| 490 | <groupId>org.apache.hadoop</groupId> |
| 491 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 492 | <scope>test</scope> |
| 493 | </dependency> |
| 494 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 495 | <groupId>commons-lang</groupId> |
| 496 | <artifactId>commons-lang</artifactId> |
| 497 | </dependency> |
| 498 | <dependency> |
| 499 | <groupId>org.apache.commons</groupId> |
| 500 | <artifactId>commons-lang3</artifactId> |
| 501 | </dependency> |
| 502 | <dependency> |
| 503 | <groupId>junit</groupId> |
| 504 | <artifactId>junit</artifactId> |
| 505 | <scope>test</scope> |
| 506 | </dependency> |
| 507 | <dependency> |
| 508 | <groupId>org.apache.hyracks</groupId> |
| 509 | <artifactId>hyracks-data-std</artifactId> |
| 510 | </dependency> |
| 511 | <dependency> |
| 512 | <groupId>org.apache.hyracks</groupId> |
| 513 | <artifactId>hyracks-dataflow-std</artifactId> |
| 514 | </dependency> |
| 515 | <dependency> |
| 516 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 517 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 518 | </dependency> |
| 519 | <dependency> |
| 520 | <groupId>com.google.guava</groupId> |
| 521 | <artifactId>guava</artifactId> |
| 522 | </dependency> |
| 523 | <dependency> |
| 524 | <groupId>org.apache.hyracks</groupId> |
| 525 | <artifactId>hyracks-control-common</artifactId> |
| 526 | </dependency> |
| 527 | <dependency> |
| 528 | <groupId>org.apache.hyracks</groupId> |
| 529 | <artifactId>hyracks-storage-am-common</artifactId> |
| 530 | </dependency> |
| 531 | <dependency> |
| 532 | <groupId>org.apache.hadoop</groupId> |
| 533 | <artifactId>hadoop-common</artifactId> |
| 534 | </dependency> |
| 535 | <dependency> |
| 536 | <groupId>org.apache.asterix</groupId> |
| 537 | <artifactId>asterix-active</artifactId> |
| 538 | <version>${project.version}</version> |
| 539 | </dependency> |
| 540 | <dependency> |
| 541 | <groupId>org.apache.hadoop</groupId> |
| 542 | <artifactId>hadoop-hdfs</artifactId> |
| 543 | </dependency> |
| 544 | <dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 545 | <groupId>com.fasterxml.jackson.core</groupId> |
| 546 | <artifactId>jackson-databind</artifactId> |
| 547 | </dependency> |
| 548 | <dependency> |
| 549 | <groupId>com.fasterxml.jackson.core</groupId> |
| 550 | <artifactId>jackson-core</artifactId> |
| 551 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 552 | <dependency> |
| 553 | <groupId>org.apache.hadoop</groupId> |
| 554 | <artifactId>hadoop-common</artifactId> |
| 555 | <classifier>tests</classifier> |
| 556 | <scope>test</scope> |
| 557 | </dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 558 | <dependency> |
| 559 | <groupId>io.netty</groupId> |
| 560 | <artifactId>netty-all</artifactId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 561 | </dependency> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 562 | <dependency> |
| 563 | <groupId>org.apache.hyracks</groupId> |
| 564 | <artifactId>hyracks-storage-am-lsm-btree-test</artifactId> |
| 565 | <type>test-jar</type> |
| 566 | <scope>test</scope> |
| 567 | </dependency> |
Murtadha Hubail | c90f1e3 | 2017-11-10 18:17:29 +0300 | [diff] [blame] | 568 | <dependency> |
| 569 | <groupId>org.apache.hyracks</groupId> |
| 570 | <artifactId>hyracks-comm</artifactId> |
| 571 | <version>${hyracks.version}</version> |
| 572 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 573 | <dependency> |
| 574 | <groupId>org.apache.logging.log4j</groupId> |
| 575 | <artifactId>log4j-api</artifactId> |
| 576 | </dependency> |
| 577 | <dependency> |
| 578 | <groupId>org.apache.logging.log4j</groupId> |
| 579 | <artifactId>log4j-core</artifactId> |
| 580 | </dependency> |
Murtadha Hubail | 56295d9 | 2017-12-20 02:18:37 +0300 | [diff] [blame^] | 581 | <dependency> |
| 582 | <groupId>org.apache.logging.log4j</groupId> |
| 583 | <artifactId>log4j-jul</artifactId> |
| 584 | <version>2.10.0</version> |
| 585 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 586 | </dependencies> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 587 | </project> |