blob: 07aefb07513d15f213ccf292257e1779dae75771 [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>
45 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000046 <groupId>edu.uci.ics.asterix</groupId>
47 <artifactId>asterix-hyracks-glue</artifactId>
48 <version>0.0.4-SNAPSHOT</version>
49 <scope>compile</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.hadoop</groupId>
53 <artifactId>hadoop-core</artifactId>
54 <version>0.20.2</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
zheilbron7cc1b582012-09-15 07:10:59 +000058 <dependency>
59 <groupId>edu.uci.ics.hyracks</groupId>
60 <artifactId>
61 hyracks-storage-am-lsm-invertedindex
62 </artifactId>
63 <version>0.2.1-SNAPSHOT</version>
64 </dependency>
65 <dependency>
66 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>
68 hyracks-storage-am-lsm-btree
69 </artifactId>
70 <version>0.2.1-SNAPSHOT</version>
71 </dependency>
72 <dependency>
73 <groupId>edu.uci.ics.hyracks</groupId>
74 <artifactId>
75 hyracks-storage-am-lsm-rtree
76 </artifactId>
77 <version>0.2.1-SNAPSHOT</version>
78 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000079 </dependencies>
80</project>