blob: 501e45038d2b36b66c16e2ca994143d32b7e44f2 [file] [log] [blame]
vinayakb5d0e4592013-04-06 18:28:48 +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-storage-am-lsm-btree-test</artifactId>
4
5 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks-tests</artifactId>
8 <version>0.2.4-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.7</source>
19 <target>1.7</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-lsm-btree</artifactId>
28 <version>0.2.4-SNAPSHOT</version>
29 <type>jar</type>
30 <scope>compile</scope>
31 </dependency>
32 <dependency>
33 <groupId>edu.uci.ics.hyracks</groupId>
34 <artifactId>hyracks-storage-am-common</artifactId>
35 <version>0.2.4-SNAPSHOT</version>
36 <scope>compile</scope>
37 </dependency>
38 <dependency>
39 <groupId>edu.uci.ics.hyracks</groupId>
40 <artifactId>hyracks-test-support</artifactId>
41 <version>0.2.4-SNAPSHOT</version>
42 <scope>compile</scope>
43 </dependency>
44 </dependencies>
45</project>