blob: b6132bd4c57d87624b00b0aeb5a1cbded1784d2a [file] [log] [blame]
vinayakb0e710842011-12-06 17:28:33 +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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <artifactId>hyracks-algebricks-core</artifactId>
4
5 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks-algebricks</artifactId>
8 <version>0.2.0-SNAPSHOT</version>
9 </parent>
10
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>
18 <source>1.6</source>
19 <target>1.6</target>
20 </configuration>
21 </plugin>
22 </plugins>
23 </build>
24 <dependencies>
25 <dependency>
26 <groupId>edu.uci.ics.hyracks</groupId>
27 <artifactId>hyracks-storage-am-btree</artifactId>
28 <version>0.2.0-SNAPSHOT</version>
29 </dependency>
30 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-storage-am-rtree</artifactId>
33 <version>0.2.0-SNAPSHOT</version>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-dataflow-std</artifactId>
38 <version>0.2.0-SNAPSHOT</version>
39 </dependency>
40 </dependencies>
41</project>