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