blob: 13c86544327cb12943c22681e3bf9aee9b9a8e1b [file] [log] [blame]
alexander.behm34464ec2010-10-06 03:32:13 +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>
alexander.behm34464ec2010-10-06 03:32:13 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>btree-example</artifactId>
zheilbrone74da942012-04-05 21:43:52 +00008 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +00009 </parent>
10
11 <dependencies>
12 <dependency>
13 <groupId>edu.uci.ics.hyracks</groupId>
14 <artifactId>hyracks-dataflow-std</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000015 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000016 <scope>compile</scope>
17 </dependency>
18 <dependency>
19 <groupId>edu.uci.ics.hyracks</groupId>
20 <artifactId>hyracks-storage-am-btree</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000021 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000022 <scope>compile</scope>
23 </dependency>
24 <dependency>
25 <groupId>edu.uci.ics.hyracks</groupId>
26 <artifactId>hyracks-api</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000027 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000028 <scope>compile</scope>
29 </dependency>
vinayakb8ec0f612011-12-08 01:00:37 +000030 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-data-std</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000033 <version>0.2.1-SNAPSHOT</version>
vinayakb8ec0f612011-12-08 01:00:37 +000034 </dependency>
alexander.behm34464ec2010-10-06 03:32:13 +000035 </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>