blob: ea860428195d989ab6c7b3fe7275d0450c13124c [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</groupId>
4 <artifactId>hyracks-storage-am-rtree-test</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +00005 <version>0.2.3-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-storage-am-rtree-test</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks-tests</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000011 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000012 </parent>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </configuration>
24 </plugin>
25 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>junit</groupId>
30 <artifactId>junit</artifactId>
31 <version>4.8.1</version>
32 <type>jar</type>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000038 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000039 <type>jar</type>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
44 <artifactId>hyracks-test-support</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000045 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000046 <type>jar</type>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50</project>