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 | !--> |
Ian Maxon | d2e1e89 | 2015-10-05 12:46:26 -0700 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
AsterixDB Jenkins | 92a9a65 | 2017-08-07 17:23:07 -0700 | [diff] [blame^] | 24 | <version>0.9.3-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-app</artifactId> |
| 27 | <licenses> |
| 28 | <license> |
| 29 | <name>Apache License, Version 2.0</name> |
| 30 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | <distribution>repo</distribution> |
| 32 | <comments>A business-friendly OSS license</comments> |
| 33 | </license> |
| 34 | </licenses> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 35 | <properties> |
| 36 | <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory> |
Michael Blow | 98526fe | 2016-08-22 19:54:07 -0400 | [diff] [blame] | 37 | <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 38 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-jar-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <goals> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 47 | <goal>test-jar</goal> |
| 48 | </goals> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | <plugin> |
Michael Blow | a98d0de | 2016-05-11 16:22:52 -0700 | [diff] [blame] | 53 | <groupId>pl.project13.maven</groupId> |
| 54 | <artifactId>git-commit-id-plugin</artifactId> |
| 55 | <version>2.2.0</version> |
| 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> |
| 124 | </configuration> |
| 125 | </execution> |
| 126 | </executions> |
| 127 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 128 | <plugin> |
| 129 | <groupId>org.apache.maven.plugins</groupId> |
| 130 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 131 | <executions> |
| 132 | <execution> |
| 133 | <id>copy-external-testlib</id> |
| 134 | <phase>pre-integration-test</phase> |
| 135 | <goals> |
| 136 | <goal>copy-dependencies</goal> |
| 137 | </goals> |
| 138 | <configuration> |
| 139 | <includeClassifiers>testlib</includeClassifiers> |
| 140 | <outputDirectory>target/data/externallib</outputDirectory> |
| 141 | <overwrite>true</overwrite> |
| 142 | <stripVersion>true</stripVersion> |
| 143 | </configuration> |
| 144 | </execution> |
| 145 | </executions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 146 | <configuration> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 147 | <ignoredUsedUndeclaredDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 148 | <ignoredUsedUndeclaredDependency>commons-logging:commons-logging-api:*</ignoredUsedUndeclaredDependency> |
| 149 | <ignoredUsedUndeclaredDependency>org.apache.hive:hive-exec:*</ignoredUsedUndeclaredDependency> |
| 150 | </ignoredUsedUndeclaredDependencies> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 151 | <usedDependencies combine.children="append"> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 152 | <usedDependency>org.apache.hadoop:hadoop-common</usedDependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 153 | </usedDependencies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 154 | <ignoredUnusedDeclaredDependencies> |
| 155 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:zip:*</ignoredUnusedDeclaredDependency> |
Michael Blow | c07a344 | 2017-04-11 19:46:33 -0400 | [diff] [blame] | 156 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-external-data:test-jar:*</ignoredUnusedDeclaredDependency> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 157 | </ignoredUnusedDeclaredDependencies> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 158 | </configuration> |
| 159 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 160 | <plugin> |
| 161 | <groupId>org.apache.rat</groupId> |
| 162 | <artifactId>apache-rat-plugin</artifactId> |
| 163 | <executions> |
| 164 | <execution> |
| 165 | <id>default</id> |
| 166 | <phase>validate</phase> |
| 167 | <goals> |
| 168 | <goal>check</goal> |
| 169 | </goals> |
| 170 | <configuration> |
| 171 | <licenses combine.children="append"> |
| 172 | <license implementation="org.apache.rat.analysis.license.MITLicense"/> |
| 173 | </licenses> |
| 174 | <excludes combine.children="append"> |
| 175 | <exclude>src/test/resources/**/results_parser_sqlpp/**</exclude> |
| 176 | <exclude>src/test/resources/**/results/**</exclude> |
| 177 | <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.dot</exclude> |
| 178 | <exclude>src/test/resources/fuzzyjoin/pub/fuzzy-join-aql*.json</exclude> |
| 179 | <exclude>data/**</exclude> |
| 180 | <exclude>src/main/resources/queryui/**</exclude> |
| 181 | <exclude>src/main/resources/webui/**</exclude> |
| 182 | <exclude>src/test/resources/**/only*.xml</exclude> |
| 183 | </excludes> |
| 184 | </configuration> |
| 185 | </execution> |
| 186 | <execution> |
| 187 | <id>webqueryui</id> |
| 188 | <phase>validate</phase> |
| 189 | <goals> |
| 190 | <goal>check</goal> |
| 191 | </goals> |
| 192 | <configuration> |
| 193 | <reportFile>${project.build.directory}/webqueryui-rat.txt</reportFile> |
| 194 | <licenses combine.children="append"> |
| 195 | <license implementation="org.apache.rat.analysis.license.MITLicense"/> |
| 196 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 197 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 198 | <licenseFamilyName>JQuery</licenseFamilyName> |
| 199 | <patterns>(c) jQuery Foundation | jquery.org/license</patterns> |
| 200 | </license> |
| 201 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 202 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 203 | <licenseFamilyName>Bootstrap</licenseFamilyName> |
| 204 | <patterns>Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)</patterns> |
| 205 | </license> |
| 206 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 207 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 208 | <licenseFamilyName>AngularJS</licenseFamilyName> |
| 209 | <patterns>http://angularjs.org | (c) 2010-2016 Google, Inc. | License: MIT</patterns> |
| 210 | </license> |
| 211 | </licenses> |
| 212 | <licenseFamilies combine.children="append"> |
| 213 | <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily"/> |
| 214 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 215 | <familyName>JQuery</familyName> |
| 216 | </licenseFamily> |
| 217 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 218 | <familyName>Bootstrap</familyName> |
| 219 | </licenseFamily> |
| 220 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 221 | <familyName>AngularJS</familyName> |
| 222 | </licenseFamily> |
| 223 | </licenseFamilies> |
| 224 | <includes> |
| 225 | <include>src/main/resources/queryui/**</include> |
| 226 | <include>src/main/resources/webui/**</include> |
| 227 | </includes> |
| 228 | <excludes>src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg</excludes> |
| 229 | </configuration> |
| 230 | </execution> |
| 231 | </executions> |
| 232 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 233 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 234 | <pluginManagement> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 235 | <plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 236 | <!--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] | 237 | <plugin> |
| 238 | <groupId>org.eclipse.m2e</groupId> |
| 239 | <artifactId>lifecycle-mapping</artifactId> |
| 240 | <version>1.0.0</version> |
| 241 | <configuration> |
| 242 | <lifecycleMappingMetadata> |
| 243 | <pluginExecutions> |
| 244 | <pluginExecution> |
| 245 | <pluginExecutionFilter> |
| 246 | <groupId>org.apache.asterix</groupId> |
| 247 | <artifactId>asterix-test-datagenerator-maven-plugin</artifactId> |
| 248 | <versionRange>[0.8.9-SNAPSHOT,)</versionRange> |
| 249 | <goals> |
| 250 | <goal>generate-testdata</goal> |
| 251 | </goals> |
| 252 | </pluginExecutionFilter> |
| 253 | <action> |
| 254 | <ignore /> |
| 255 | </action> |
| 256 | </pluginExecution> |
| 257 | </pluginExecutions> |
| 258 | </lifecycleMappingMetadata> |
| 259 | </configuration> |
| 260 | </plugin> |
| 261 | </plugins> |
Abdullah Alamoudi | e6e54f3 | 2016-07-12 20:40:15 +0400 | [diff] [blame] | 262 | </pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 263 | </build> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 264 | <profiles> |
| 265 | <profile> |
| 266 | <id>skip.asterix-app.tests</id> |
| 267 | <build> |
| 268 | <plugins> |
| 269 | <plugin> |
| 270 | <groupId>org.apache.maven.plugins</groupId> |
| 271 | <artifactId>maven-surefire-plugin</artifactId> |
Michael Blow | 89328a8 | 2017-03-14 00:06:01 -0400 | [diff] [blame] | 272 | <configuration> |
| 273 | <skip>true</skip> |
| 274 | </configuration> |
| 275 | </plugin> |
| 276 | </plugins> |
| 277 | </build> |
| 278 | </profile> |
| 279 | </profiles> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 280 | <dependencies> |
| 281 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 282 | <groupId>org.apache.hyracks</groupId> |
| 283 | <artifactId>hyracks-control-cc</artifactId> |
| 284 | </dependency> |
| 285 | <dependency> |
| 286 | <groupId>org.apache.hyracks</groupId> |
| 287 | <artifactId>hyracks-control-nc</artifactId> |
| 288 | </dependency> |
| 289 | <dependency> |
| 290 | <groupId>org.apache.hyracks</groupId> |
| 291 | <artifactId>algebricks-compiler</artifactId> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>org.apache.hyracks</groupId> |
| 295 | <artifactId>hyracks-client</artifactId> |
| 296 | </dependency> |
| 297 | <dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 298 | <groupId>org.apache.hyracks</groupId> |
| 299 | <artifactId>hyracks-api</artifactId> |
| 300 | </dependency> |
| 301 | <dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 302 | <groupId>org.apache.hyracks</groupId> |
| 303 | <artifactId>hyracks-http</artifactId> |
| 304 | </dependency> |
| 305 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 306 | <groupId>org.apache.asterix</groupId> |
| 307 | <artifactId>asterix-algebra</artifactId> |
| 308 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 309 | </dependency> |
| 310 | <dependency> |
| 311 | <groupId>org.apache.asterix</groupId> |
| 312 | <artifactId>asterix-om</artifactId> |
| 313 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 314 | </dependency> |
| 315 | <dependency> |
| 316 | <groupId>org.apache.asterix</groupId> |
| 317 | <artifactId>asterix-metadata</artifactId> |
| 318 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 319 | </dependency> |
| 320 | <dependency> |
| 321 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 322 | <artifactId>asterix-common</artifactId> |
| 323 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 324 | </dependency> |
| 325 | <dependency> |
| 326 | <groupId>org.apache.asterix</groupId> |
| 327 | <artifactId>asterix-common</artifactId> |
| 328 | <version>${project.version}</version> |
| 329 | <type>test-jar</type> |
| 330 | <scope>test</scope> |
| 331 | </dependency> |
| 332 | <dependency> |
| 333 | <groupId>org.apache.asterix</groupId> |
| 334 | <artifactId>asterix-transactions</artifactId> |
| 335 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 336 | </dependency> |
| 337 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 338 | <groupId>org.apache.asterix</groupId> |
| 339 | <artifactId>asterix-test-framework</artifactId> |
| 340 | <version>${project.version}</version> |
| 341 | <scope>test</scope> |
| 342 | </dependency> |
| 343 | <dependency> |
| 344 | <groupId>org.mockito</groupId> |
| 345 | <artifactId>mockito-all</artifactId> |
| 346 | <version>1.10.19</version> |
| 347 | <scope>test</scope> |
| 348 | </dependency> |
| 349 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 350 | <groupId>org.apache.asterix</groupId> |
| 351 | <artifactId>asterix-replication</artifactId> |
| 352 | <version>${project.version}</version> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 353 | </dependency> |
| 354 | <dependency> |
| 355 | <groupId>org.apache.asterix</groupId> |
| 356 | <artifactId>asterix-external-data</artifactId> |
| 357 | <version>${project.version}</version> |
| 358 | <type>test-jar</type> |
| 359 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 360 | </dependency> |
| 361 | <dependency> |
| 362 | <groupId>org.apache.asterix</groupId> |
| 363 | <artifactId>asterix-external-data</artifactId> |
| 364 | <version>${project.version}</version> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 365 | <type>zip</type> |
| 366 | <classifier>testlib</classifier> |
| 367 | <scope>test</scope> |
| 368 | </dependency> |
| 369 | <dependency> |
| 370 | <groupId>org.apache.asterix</groupId> |
| 371 | <artifactId>asterix-external-data</artifactId> |
| 372 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 373 | </dependency> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 374 | <dependency> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 375 | <groupId>org.apache.hyracks</groupId> |
| 376 | <artifactId>hyracks-test-support</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 377 | <scope>test</scope> |
| 378 | </dependency> |
| 379 | <dependency> |
| 380 | <groupId>org.apache.hyracks</groupId> |
| 381 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 382 | <type>test-jar</type> |
| 383 | <scope>test</scope> |
Abdullah Alamoudi | f04ba06 | 2016-05-22 23:43:39 -0700 | [diff] [blame] | 384 | </dependency> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 385 | <dependency> |
| 386 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 387 | <artifactId>hyracks-dataflow-common</artifactId> |
| 388 | </dependency> |
| 389 | <dependency> |
| 390 | <groupId>com.e-movimento.tinytools</groupId> |
| 391 | <artifactId>privilegedaccessor</artifactId> |
| 392 | <version>1.2.2</version> |
Yingyi Bu | 80e6201 | 2017-01-20 20:43:31 -0800 | [diff] [blame] | 393 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 394 | </dependency> |
| 395 | <dependency> |
| 396 | <groupId>commons-io</groupId> |
| 397 | <artifactId>commons-io</artifactId> |
| 398 | </dependency> |
| 399 | <dependency> |
| 400 | <groupId>org.apache.asterix</groupId> |
| 401 | <artifactId>asterix-lang-aql</artifactId> |
| 402 | <version>${project.version}</version> |
| 403 | </dependency> |
| 404 | <dependency> |
| 405 | <groupId>org.apache.hyracks</groupId> |
| 406 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 407 | </dependency> |
| 408 | <dependency> |
| 409 | <groupId>org.apache.asterix</groupId> |
| 410 | <artifactId>asterix-events</artifactId> |
| 411 | <version>${project.version}</version> |
| 412 | </dependency> |
| 413 | <dependency> |
| 414 | <groupId>log4j</groupId> |
| 415 | <artifactId>log4j</artifactId> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 416 | </dependency> |
| 417 | <dependency> |
| 418 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 419 | <artifactId>hadoop-hdfs</artifactId> |
| 420 | <classifier>tests</classifier> |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 421 | <scope>test</scope> |
| 422 | </dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 423 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 424 | <groupId>org.apache.hyracks</groupId> |
| 425 | <artifactId>algebricks-data</artifactId> |
| 426 | </dependency> |
| 427 | <dependency> |
| 428 | <groupId>org.apache.hyracks</groupId> |
| 429 | <artifactId>algebricks-core</artifactId> |
| 430 | </dependency> |
| 431 | <dependency> |
| 432 | <groupId>org.apache.hyracks</groupId> |
| 433 | <artifactId>hyracks-net</artifactId> |
| 434 | </dependency> |
| 435 | <dependency> |
Dmitry Lychagin | 86cbec5 | 2017-06-19 11:16:14 -0700 | [diff] [blame] | 436 | <groupId>org.apache.hyracks</groupId> |
| 437 | <artifactId>hyracks-ipc</artifactId> |
| 438 | </dependency> |
| 439 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 440 | <groupId>javax.xml.bind</groupId> |
| 441 | <artifactId>jaxb-api</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 442 | <scope>test</scope> |
| 443 | </dependency> |
| 444 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 445 | <groupId>org.apache.commons</groupId> |
| 446 | <artifactId>commons-compress</artifactId> |
| 447 | <version>1.4.1</version> |
| 448 | <scope>test</scope> |
| 449 | </dependency> |
| 450 | <dependency> |
| 451 | <groupId>org.apache.hyracks</groupId> |
| 452 | <artifactId>algebricks-runtime</artifactId> |
| 453 | </dependency> |
| 454 | <dependency> |
| 455 | <groupId>org.apache.httpcomponents</groupId> |
| 456 | <artifactId>httpcore</artifactId> |
| 457 | </dependency> |
| 458 | <dependency> |
Till Westmann | 452ec9f6 | 2017-02-23 09:12:50 -0800 | [diff] [blame] | 459 | <groupId>org.apache.httpcomponents</groupId> |
| 460 | <artifactId>httpclient</artifactId> |
| 461 | </dependency> |
| 462 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 463 | <groupId>org.apache.asterix</groupId> |
| 464 | <artifactId>asterix-lang-common</artifactId> |
| 465 | <version>${project.version}</version> |
| 466 | </dependency> |
| 467 | <dependency> |
| 468 | <groupId>org.apache.hyracks</groupId> |
| 469 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 470 | </dependency> |
| 471 | <dependency> |
| 472 | <groupId>org.apache.asterix</groupId> |
| 473 | <artifactId>asterix-runtime</artifactId> |
| 474 | <version>${project.version}</version> |
| 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>org.apache.hyracks</groupId> |
| 478 | <artifactId>hyracks-storage-common</artifactId> |
| 479 | </dependency> |
| 480 | <dependency> |
| 481 | <groupId>org.apache.hyracks</groupId> |
| 482 | <artifactId>algebricks-common</artifactId> |
| 483 | </dependency> |
| 484 | <dependency> |
| 485 | <groupId>org.apache.asterix</groupId> |
| 486 | <artifactId>asterix-lang-sqlpp</artifactId> |
| 487 | <version>${project.version}</version> |
| 488 | </dependency> |
| 489 | <dependency> |
| 490 | <groupId>org.apache.hyracks</groupId> |
| 491 | <artifactId>hyracks-util</artifactId> |
| 492 | </dependency> |
| 493 | <dependency> |
| 494 | <groupId>args4j</groupId> |
| 495 | <artifactId>args4j</artifactId> |
| 496 | </dependency> |
| 497 | <dependency> |
| 498 | <groupId>org.apache.hadoop</groupId> |
| 499 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 500 | <scope>test</scope> |
| 501 | </dependency> |
| 502 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 503 | <groupId>commons-lang</groupId> |
| 504 | <artifactId>commons-lang</artifactId> |
| 505 | </dependency> |
| 506 | <dependency> |
| 507 | <groupId>org.apache.commons</groupId> |
| 508 | <artifactId>commons-lang3</artifactId> |
| 509 | </dependency> |
| 510 | <dependency> |
| 511 | <groupId>junit</groupId> |
| 512 | <artifactId>junit</artifactId> |
| 513 | <scope>test</scope> |
| 514 | </dependency> |
| 515 | <dependency> |
| 516 | <groupId>org.apache.hyracks</groupId> |
| 517 | <artifactId>hyracks-data-std</artifactId> |
| 518 | </dependency> |
| 519 | <dependency> |
| 520 | <groupId>org.apache.hyracks</groupId> |
| 521 | <artifactId>hyracks-dataflow-std</artifactId> |
| 522 | </dependency> |
| 523 | <dependency> |
| 524 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 525 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 526 | </dependency> |
| 527 | <dependency> |
| 528 | <groupId>com.google.guava</groupId> |
| 529 | <artifactId>guava</artifactId> |
| 530 | </dependency> |
| 531 | <dependency> |
| 532 | <groupId>org.apache.hyracks</groupId> |
| 533 | <artifactId>hyracks-control-common</artifactId> |
| 534 | </dependency> |
| 535 | <dependency> |
| 536 | <groupId>org.apache.hyracks</groupId> |
| 537 | <artifactId>hyracks-storage-am-common</artifactId> |
| 538 | </dependency> |
| 539 | <dependency> |
| 540 | <groupId>org.apache.hadoop</groupId> |
| 541 | <artifactId>hadoop-common</artifactId> |
| 542 | </dependency> |
| 543 | <dependency> |
| 544 | <groupId>org.apache.asterix</groupId> |
| 545 | <artifactId>asterix-active</artifactId> |
| 546 | <version>${project.version}</version> |
| 547 | </dependency> |
| 548 | <dependency> |
| 549 | <groupId>org.apache.hadoop</groupId> |
| 550 | <artifactId>hadoop-hdfs</artifactId> |
| 551 | </dependency> |
| 552 | <dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 553 | <groupId>com.fasterxml.jackson.core</groupId> |
| 554 | <artifactId>jackson-databind</artifactId> |
| 555 | </dependency> |
| 556 | <dependency> |
| 557 | <groupId>com.fasterxml.jackson.core</groupId> |
| 558 | <artifactId>jackson-core</artifactId> |
| 559 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 560 | <dependency> |
| 561 | <groupId>org.apache.hadoop</groupId> |
| 562 | <artifactId>hadoop-common</artifactId> |
| 563 | <classifier>tests</classifier> |
| 564 | <scope>test</scope> |
| 565 | </dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 566 | <dependency> |
| 567 | <groupId>io.netty</groupId> |
| 568 | <artifactId>netty-all</artifactId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 569 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 570 | </dependencies> |
Michael Blow | 10a7486 | 2017-05-23 16:55:39 -0400 | [diff] [blame] | 571 | </project> |