blob: d201a4c3ee441e096c15e960c32d38061dcc78e4 [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-test-support</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +00005 <version>0.2.2</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-test-support</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000011 <version>0.2.2</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>edu.uci.ics.hyracks</groupId>
30 <artifactId>hyracks-control-nc</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000031 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000032 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-storage-common</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000037 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000038 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000043 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000044 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>edu.uci.ics.hyracks</groupId>
49 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000050 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000051 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.hyracks</groupId>
56 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000057 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000058 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>4.8.1</version>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 </dependencies>
69</project>