blob: 623edc490b41abec6f9a67413b2955096fd5113e [file] [log] [blame]
vinayakb59d505d2012-10-29 10:38:02 +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>
vinayakb59d505d2012-10-29 10:38:02 +00003 <artifactId>hyracks-test-support</artifactId>
vinayakb59d505d2012-10-29 10:38:02 +00004 <name>hyracks-test-support</name>
5
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <artifactId>hyracks</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +00009 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000010 </parent>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
buyingyi5df938f2013-03-24 07:20:08 +000019 <source>1.7</source>
20 <target>1.7</target>
21 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000022 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-control-nc</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +000030 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000031 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-storage-common</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +000036 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000037 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>edu.uci.ics.hyracks</groupId>
41 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +000042 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000043 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +000049 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5d0e4592013-04-06 18:28:48 +000055 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
vinayakbbea31e32013-04-06 19:21:52 +000056 <version>0.2.5-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <version>4.8.1</version>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 </dependencies>
68</project>