blob: 8cceaa07c716764c8096c72ce614938372c3858c [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
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.hyracks</groupId>
33 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.asterix</groupId>
37 <artifactId>asterix-hyracks-glue</artifactId>
38 <version>0.0.4-SNAPSHOT</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen1c0fa2a2013-02-03 05:46:59 +000043 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000044 </dependency>
45 <dependency>
46 <groupId>edu.uci.ics.hyracks</groupId>
47 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </dependency>
49 </dependencies>
50</project>