blob: 5368f07f7414df9651d1b29146f2dd33683cd668 [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-om</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.hyracks</groupId>
32 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000033 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.asterix</groupId>
36 <artifactId>asterix-hyracks-glue</artifactId>
37 <version>0.0.4-SNAPSHOT</version>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
vinayakbba4abf62013-02-01 01:19:43 +000042 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000043 </dependency>
44 <dependency>
45 <groupId>edu.uci.ics.hyracks</groupId>
46 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakbba4abf62013-02-01 01:19:43 +000047 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </dependencies>
49</project>