blob: a74d2332971baece658e3a2218b0e2b1cd514e44 [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>
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.hyracks</groupId>
35 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000036 </dependency>
37 <dependency>
38 <groupId>edu.uci.ics.asterix</groupId>
39 <artifactId>asterix-hyracks-glue</artifactId>
40 <version>0.0.4-SNAPSHOT</version>
41 <scope>compile</scope>
42 </dependency>
43 <dependency>
44 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen1c0fa2a2013-02-03 05:46:59 +000045 <artifactId>algebricks-compiler</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 </dependencies>
52</project>