blob: d74b3841c8797db18a37bc405769092c00165a5d [file] [log] [blame]
vinayakb1f050c62010-08-14 05:43:59 +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>
vinayakb391c9082010-08-14 05:57:38 +00003 <groupId>edu.uci.ics.hyracks.examples</groupId>
4 <artifactId>hyracks-integration-tests</artifactId>
vinayakb28cc83e2010-08-19 21:44:21 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks-examples</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +00008 <version>0.2.0-SNAPSHOT</version>
vinayakb28cc83e2010-08-19 21:44:21 +00009 </parent>
10
vinayakb1f050c62010-08-14 05:43:59 +000011 <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.6</source>
19 <target>1.6</target>
20 </configuration>
21 </plugin>
vinayakb1f050c62010-08-14 05:43:59 +000022 </plugins>
23 </build>
24 <dependencies>
25 <dependency>
26 <groupId>junit</groupId>
27 <artifactId>junit</artifactId>
28 <version>4.8.1</version>
29 <type>jar</type>
30 <scope>test</scope>
31 </dependency>
32 <dependency>
33 <groupId>edu.uci.ics.hyracks</groupId>
34 <artifactId>hyracks-dataflow-std</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000035 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000036 <type>jar</type>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>edu.uci.ics.hyracks</groupId>
41 <artifactId>hyracks-control-cc</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000042 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000043 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>hyracks-control-nc</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000049 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
alexander.behmc0d2bbe2010-09-02 00:33:56 +000053 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
55 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000056 <version>0.2.0-SNAPSHOT</version>
alexander.behmc0d2bbe2010-09-02 00:33:56 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
alexander.behm09c6e092010-11-18 08:27:23 +000060 <dependency>
61 <groupId>edu.uci.ics.hyracks</groupId>
62 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000063 <version>0.2.0-SNAPSHOT</version>
alexander.behm09c6e092010-11-18 08:27:23 +000064 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
vinayakb74c72072011-01-06 23:41:16 +000067 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
salsubaiee77632952011-07-12 22:04:50 +000069 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000070 <version>0.2.0-SNAPSHOT</version>
salsubaiee77632952011-07-12 22:04:50 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
75 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb74c72072011-01-06 23:41:16 +000076 <artifactId>hyracks-test-support</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000077 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +000078 <type>jar</type>
79 <scope>test</scope>
80 </dependency>
vinayakb8ec0f612011-12-08 01:00:37 +000081 <dependency>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>hyracks-data-std</artifactId>
84 <version>0.2.0-SNAPSHOT</version>
85 </dependency>
vinayakb1f050c62010-08-14 05:43:59 +000086 </dependencies>
87</project>