blob: 6b6026a7443b28525dace3ffa5f1d692138ce098 [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>
vinayakb0c860392012-10-06 18:47:20 +00003 <artifactId>hyracks-test-support</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +00004 <name>hyracks-test-support</name>
vinayakb0c860392012-10-06 18:47:20 +00005
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <artifactId>hyracks</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +00009 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +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>
madhusudancs@gmail.com454e8502013-02-26 04:39:17 +000019 <source>1.7</source>
20 <target>1.7</target>
buyingyibc168c82013-03-02 08:38:44 +000021 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +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>
buyingyia7ee7572013-03-25 07:37:09 +000030 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000031 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-storage-common</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +000036 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000037 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>edu.uci.ics.hyracks</groupId>
41 <artifactId>hyracks-storage-am-btree</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +000042 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +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>
buyingyia7ee7572013-03-25 07:37:09 +000049 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
zheilbron5728a702013-03-04 18:43:03 +000055 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +000056 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +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>