blob: ae90e4e619a598ccd499aea197f1b0c28b12b3a5 [file] [log] [blame]
zheilbron5e741de2013-02-16 21:34:39 +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>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <artifactId>asterix-metadata</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
zheilbron5e741de2013-02-16 21:34:39 +000018 <source>1.7</source>
19 <target>1.7</target>
buyingyi8a61a182013-03-03 08:41:25 +000020 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </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>
46 <groupId>edu.uci.ics.hyracks</groupId>
47 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.hyracks</groupId>
51 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000052 </dependency>
53 <dependency>
54 <groupId>edu.uci.ics.asterix</groupId>
55 <artifactId>asterix-hyracks-glue</artifactId>
56 <version>0.0.4-SNAPSHOT</version>
57 <scope>compile</scope>
58 </dependency>
zheilbron5e741de2013-02-16 21:34:39 +000059 <dependency>
60 <groupId>org.apache.hadoop</groupId>
61 <artifactId>hadoop-core</artifactId>
62 <version>0.20.2</version>
63 <type>jar</type>
64 <scope>compile</scope>
65 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000066 </dependencies>
67</project>