blob: d1f294c68a7b8099864cedf56294d7ae17e8651d [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
Ian Maxon6e5f18e2015-11-24 18:02:48 -08003 ! or more contributor license agreements.See the NOTICE file
Ian Maxon928bbd12015-09-14 17:12:48 -07004 ! distributed with this work for additional information
Ian Maxon6e5f18e2015-11-24 18:02:48 -08005 ! regarding copyright ownership.The ASF licenses this file
Ian Maxon928bbd12015-09-14 17:12:48 -07006 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
Ian Maxon6e5f18e2015-11-24 18:02:48 -08008 ! with the License.You may obtain a copy of the License at
Ian Maxon928bbd12015-09-14 17:12:48 -07009 !
Ian Maxon6e5f18e2015-11-24 18:02:48 -080010 ! http://www.apache.org/licenses/LICENSE-2.0
Ian Maxon928bbd12015-09-14 17:12:48 -070011 !
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 Maxon6e5f18e2015-11-24 18:02:48 -080015 ! KIND, either express or implied.See the License for the
Ian Maxon928bbd12015-09-14 17:12:48 -070016 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<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 Alamoudi486e47a2015-12-23 08:17:57 +030020 <modelVersion>4.0.0</modelVersion>
21 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070022 <artifactId>apache-asterixdb</artifactId>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030023 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070024 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030025 </parent>
26 <artifactId>asterix-metadata</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070027 <properties>
28 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
29 </properties>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030030 <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 Maxon3da9d062016-03-16 17:05:31 -070042 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030043 <scope>compile</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.asterix</groupId>
47 <artifactId>asterix-om</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070048 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030049 <scope>compile</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.asterix</groupId>
53 <artifactId>asterix-runtime</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070054 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030055 <scope>compile</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.asterix</groupId>
59 <artifactId>asterix-events</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070060 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030061 <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 Maxon3da9d062016-03-16 17:05:31 -070089 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030090 </dependency>
91 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +000092</project>