blob: 8ff3f84d95c211d8c6fecc3a1c62f7b6378862ec [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-om</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>
vinayakb38b7ca42012-03-05 05:44:15 +000020 </configuration>
21 </plugin>
22 </plugins>
23 </build>
24
25 <dependencies>
26 <dependency>
27 <groupId>edu.uci.ics.asterix</groupId>
28 <artifactId>asterix-common</artifactId>
29 <version>0.0.4-SNAPSHOT</version>
30 <scope>compile</scope>
31 </dependency>
32 <dependency>
33 <groupId>edu.uci.ics.hyracks</groupId>
34 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000035 </dependency>
36 <dependency>
37 <groupId>edu.uci.ics.asterix</groupId>
38 <artifactId>asterix-hyracks-glue</artifactId>
39 <version>0.0.4-SNAPSHOT</version>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen1c0fa2a2013-02-03 05:46:59 +000044 <artifactId>algebricks-compiler</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 </dependencies>
51</project>