blob: d95e29a29570f101ff9e9ef90d3c858493dff5bf [file] [log] [blame]
zheilbron12ea9382012-10-02 02:01:07 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9 <groupId>edu.uci.ics.asterix</groupId>
10 <artifactId>asterix-metadata</artifactId>
11 <version>0.0.4-SNAPSHOT</version>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26
27 <dependencies>
28 <dependency>
29 <groupId>edu.uci.ics.asterix</groupId>
30 <artifactId>asterix-common</artifactId>
31 <version>0.0.4-SNAPSHOT</version>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.asterix</groupId>
36 <artifactId>asterix-om</artifactId>
37 <version>0.0.4-SNAPSHOT</version>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.asterix</groupId>
42 <artifactId>asterix-external-data</artifactId>
43 <version>0.0.4-SNAPSHOT</version>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
zheilbron12ea9382012-10-02 02:01:07 +000047 <groupId>org.apache.hadoop</groupId>
48 <artifactId>hadoop-core</artifactId>
49 <version>0.20.2</version>
50 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000051 <scope>compile</scope>
52 </dependency>
zheilbron12ea9382012-10-02 02:01:07 +000053 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
55 <artifactId>
zheilbron7cc1b582012-09-15 07:10:59 +000056 hyracks-storage-am-lsm-invertedindex
57 </artifactId>
zheilbron12ea9382012-10-02 02:01:07 +000058 <version>0.2.2-SNAPSHOT</version>
59 </dependency>
60 <dependency>
61 <groupId>edu.uci.ics.hyracks</groupId>
62 <artifactId>
zheilbron7cc1b582012-09-15 07:10:59 +000063 hyracks-storage-am-lsm-btree
64 </artifactId>
zheilbron12ea9382012-10-02 02:01:07 +000065 <version>0.2.2-SNAPSHOT</version>
66 </dependency>
67 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
69 <artifactId>
zheilbron7cc1b582012-09-15 07:10:59 +000070 hyracks-storage-am-lsm-rtree
71 </artifactId>
zheilbron12ea9382012-10-02 02:01:07 +000072 <version>0.2.2-SNAPSHOT</version>
73 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000074 </dependencies>
75</project>