blob: 8c3d3c97c6a4675fcf51fed29336c16b3bd37c42 [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">
vinayakb38b7ca42012-03-05 05:44:15 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon15e46b02016-02-02 10:39:15 -080024 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-metadata</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000027
Ian Maxon6e5f18e2015-11-24 18:02:48 -080028 <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>
36
37 <properties>
38 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
39 </properties>
Ian4a816dc2014-11-26 15:46:32 -080040
vinayakb38b7ca42012-03-05 05:44:15 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070046 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000047 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000048 <source>1.7</source>
49 <target>1.7</target>
50 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000051 </configuration>
52 </plugin>
53 </plugins>
54 </build>
55
56 <dependencies>
57 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070058 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +000059 <artifactId>asterix-common</artifactId>
Ian Maxon15e46b02016-02-02 10:39:15 -080060 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000061 <scope>compile</scope>
62 </dependency>
63 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070064 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +000065 <artifactId>asterix-om</artifactId>
Ian Maxon15e46b02016-02-02 10:39:15 -080066 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000067 <scope>compile</scope>
68 </dependency>
69 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070070 <groupId>org.apache.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070071 <artifactId>asterix-runtime</artifactId>
Ian Maxon15e46b02016-02-02 10:39:15 -080072 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000073 <scope>compile</scope>
74 </dependency>
75 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070076 <groupId>org.apache.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070077 <artifactId>asterix-events</artifactId>
Ian Maxon15e46b02016-02-02 10:39:15 -080078 <version>0.8.8-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070079 <scope>compile</scope>
80 </dependency>
81 <dependency>
Ian18997ce2014-09-22 16:14:39 -070082 <groupId>org.apache.hadoop</groupId>
83 <artifactId>hadoop-client</artifactId>
84 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070088 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000089 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000090 </dependency>
91 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070092 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000093 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000094 </dependency>
95 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070096 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000097 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000098 </dependency>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080099 <dependency>
100 <groupId>org.apache.hyracks</groupId>
101 <artifactId>hyracks-hdfs-core</artifactId>
102 <version>${hyracks.version}</version>
103 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000104 </dependencies>
105</project>