blob: d782999e52cd8ac8571a1b99434946d073ec4f76 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <artifactId>asterix</artifactId>
5 <groupId>edu.uci.ics.asterix</groupId>
6 <version>0.0.4-SNAPSHOT</version>
7 </parent>
8 <groupId>edu.uci.ics.asterix</groupId>
9 <artifactId>asterix-metadata</artifactId>
10 <version>0.0.4-SNAPSHOT</version>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.6</source>
20 <target>1.6</target>
21 </configuration>
22 </plugin>
23 </plugins>
24 </build>
25
26 <dependencies>
27 <dependency>
28 <groupId>edu.uci.ics.asterix</groupId>
29 <artifactId>asterix-common</artifactId>
30 <version>0.0.4-SNAPSHOT</version>
31 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.asterix</groupId>
35 <artifactId>asterix-om</artifactId>
36 <version>0.0.4-SNAPSHOT</version>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>edu.uci.ics.asterix</groupId>
41 <artifactId>asterix-external-data</artifactId>
42 <version>0.0.4-SNAPSHOT</version>
43 <scope>compile</scope>
44 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000045 <dependency>
46 <groupId>org.apache.hadoop</groupId>
47 <artifactId>hadoop-core</artifactId>
48 <version>0.20.2</version>
49 <type>jar</type>
50 <scope>compile</scope>
51 </dependency>
zheilbron7cc1b582012-09-15 07:10:59 +000052 <dependency>
53 <groupId>edu.uci.ics.hyracks</groupId>
54 <artifactId>
55 hyracks-storage-am-lsm-invertedindex
56 </artifactId>
57 <version>0.2.1-SNAPSHOT</version>
58 </dependency>
59 <dependency>
60 <groupId>edu.uci.ics.hyracks</groupId>
61 <artifactId>
62 hyracks-storage-am-lsm-btree
63 </artifactId>
64 <version>0.2.1-SNAPSHOT</version>
65 </dependency>
66 <dependency>
67 <groupId>edu.uci.ics.hyracks</groupId>
68 <artifactId>
69 hyracks-storage-am-lsm-rtree
70 </artifactId>
71 <version>0.2.1-SNAPSHOT</version>
72 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000073 </dependencies>
74</project>