blob: febe440eb874457a4c048de0e2a260b10e77a4b9 [file] [log] [blame]
ramangrover2974915662013-06-06 15:12:21 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 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 +000012 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070016 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000017 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000018 <artifactId>asterix-metadata</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000019
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 <version>2.0.2</version>
26 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000027 <source>1.7</source>
28 <target>1.7</target>
29 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000030 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34
35 <dependencies>
36 <dependency>
37 <groupId>edu.uci.ics.asterix</groupId>
38 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070039 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000040 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.asterix</groupId>
44 <artifactId>asterix-om</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070045 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000046 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070050 <artifactId>asterix-runtime</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070051 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000052 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070056 <artifactId>asterix-events</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070057 <version>0.8.1-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070058 <scope>compile</scope>
59 </dependency>
60 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +000061 <groupId>org.apache.hadoop</groupId>
62 <artifactId>hadoop-core</artifactId>
63 <version>0.20.2</version>
64 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000065 <scope>compile</scope>
66 </dependency>
67 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000069 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000070 </dependency>
71 <dependency>
72 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000073 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000074 </dependency>
75 <dependency>
76 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000077 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000078 </dependency>
ramangrover29db035f92013-06-06 18:30:10 -070079 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-hdfs-core</artifactId>
82 <version>${hyracks.version}</version>
83 </dependency>
84
vinayakb38b7ca42012-03-05 05:44:15 +000085 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +000086 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-core</artifactId>
88 <version>0.20.2</version>
89 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000090 <scope>compile</scope>
91 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000092 </dependencies>
93</project>