blob: 7b033be4cdd5f3110da4a675a3a43a1eecbb4d12 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +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 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
4 <artifactId>btreehelper</artifactId>
5 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>btree-example</artifactId>
8 <version>0.2.2-SNAPSHOT</version>
9 </parent>
10
11 <dependencies>
12 <dependency>
13 <groupId>edu.uci.ics.hyracks</groupId>
14 <artifactId>hyracks-dataflow-std</artifactId>
15 <version>0.2.2-SNAPSHOT</version>
16 <scope>compile</scope>
17 </dependency>
18 <dependency>
19 <groupId>edu.uci.ics.hyracks</groupId>
20 <artifactId>hyracks-storage-am-btree</artifactId>
21 <version>0.2.2-SNAPSHOT</version>
22 <scope>compile</scope>
23 </dependency>
24 <dependency>
25 <groupId>edu.uci.ics.hyracks</groupId>
26 <artifactId>hyracks-api</artifactId>
27 <version>0.2.2-SNAPSHOT</version>
28 <scope>compile</scope>
29 </dependency>
30 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-data-std</artifactId>
33 <version>0.2.2-SNAPSHOT</version>
34 </dependency>
35 </dependencies>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <version>2.0.2</version>
42 <configuration>
43 <source>1.6</source>
44 <target>1.6</target>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49</project>