Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 3 | ! or more contributor license agreements.See the NOTICE file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 4 | ! distributed with this work for additional information |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 5 | ! regarding copyright ownership.The ASF licenses this file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 8 | ! with the License.You may obtain a copy of the License at |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 9 | ! |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 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 |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 15 | ! KIND, either express or implied.See the License for the |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
| 18 | !--> |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [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"> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 22 | <artifactId>apache-asterixdb</artifactId> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 24 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 27 | <properties> |
| 28 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 29 | </properties> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 30 | <licenses> |
| 31 | <license> |
| 32 | <name>Apache License, Version 2.0</name> |
| 33 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 34 | <distribution>repo</distribution> |
| 35 | <comments>A business-friendly OSS license</comments> |
| 36 | </license> |
| 37 | </licenses> |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.asterix</groupId> |
| 41 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 42 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 43 | <scope>compile</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.asterix</groupId> |
| 47 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 48 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 49 | <scope>compile</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.asterix</groupId> |
| 53 | <artifactId>asterix-runtime</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 54 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 55 | <scope>compile</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.asterix</groupId> |
| 59 | <artifactId>asterix-events</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 60 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 61 | <scope>compile</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.hadoop</groupId> |
| 65 | <artifactId>hadoop-client</artifactId> |
| 66 | <type>jar</type> |
| 67 | <scope>compile</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.hyracks</groupId> |
| 71 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.hyracks</groupId> |
| 75 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.apache.hyracks</groupId> |
| 79 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.apache.hyracks</groupId> |
| 83 | <artifactId>hyracks-hdfs-core</artifactId> |
| 84 | <version>${hyracks.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.apache.asterix</groupId> |
| 88 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 89 | <version>0.8.9-SNAPSHOT</version> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 90 | </dependency> |
| 91 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 92 | </project> |