blob: 459d4d09f5555db97f8682d3564df9981ffc0a0c [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>
vinayakb38b7ca42012-03-05 05:44:15 +00008 <artifactId>asterix-metadata</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <build>
10 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
13 <artifactId>maven-compiler-plugin</artifactId>
14 <version>2.0.2</version>
15 <configuration>
16 <source>1.6</source>
17 <target>1.6</target>
18 </configuration>
19 </plugin>
20 </plugins>
21 </build>
22
23 <dependencies>
24 <dependency>
25 <groupId>edu.uci.ics.asterix</groupId>
26 <artifactId>asterix-common</artifactId>
27 <version>0.0.4-SNAPSHOT</version>
28 <scope>compile</scope>
29 </dependency>
30 <dependency>
31 <groupId>edu.uci.ics.asterix</groupId>
32 <artifactId>asterix-om</artifactId>
33 <version>0.0.4-SNAPSHOT</version>
34 <scope>compile</scope>
35 </dependency>
36 <dependency>
37 <groupId>edu.uci.ics.asterix</groupId>
38 <artifactId>asterix-external-data</artifactId>
39 <version>0.0.4-SNAPSHOT</version>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
44 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000045 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000049 </dependency>
50 <dependency>
51 <groupId>edu.uci.ics.asterix</groupId>
52 <artifactId>asterix-hyracks-glue</artifactId>
53 <version>0.0.4-SNAPSHOT</version>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.hadoop</groupId>
58 <artifactId>hadoop-core</artifactId>
59 <version>0.20.2</version>
60 <type>jar</type>
61 <scope>compile</scope>
62 </dependency>
63 </dependencies>
64</project>