blob: f7f3c07b95afa1f4fb31db0bb5e73b8831734ef3 [file] [log] [blame]
vinayakbceb734e2010-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>
vinayakbdd0080e2010-08-14 05:57:38 +00003 <groupId>edu.uci.ics.hyracks.examples</groupId>
4 <artifactId>hyracks-integration-tests</artifactId>
vinayakb0fbb5f22010-08-19 21:44:21 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks-examples</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +00008 <version>0.2.1</version>
vinayakb0fbb5f22010-08-19 21:44:21 +00009 </parent>
10
vinayakbceb734e2010-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>
vinayakbceb734e2010-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>
vinayakbb5ee1012012-09-28 02:24:00 +000035 <version>0.2.1</version>
vinayakbceb734e2010-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>
vinayakbb5ee1012012-09-28 02:24:00 +000042 <version>0.2.1</version>
vinayakbceb734e2010-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>
vinayakbb5ee1012012-09-28 02:24:00 +000049 <version>0.2.1</version>
vinayakbceb734e2010-08-14 05:43:59 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
alexander.behm4ad96062010-09-02 00:33:56 +000053 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
55 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000056 <version>0.2.1</version>
alexander.behm4ad96062010-09-02 00:33:56 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
alexander.behmcbd6ca32010-11-18 08:27:23 +000060 <dependency>
61 <groupId>edu.uci.ics.hyracks</groupId>
62 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000063 <version>0.2.1</version>
alexander.behmcbd6ca32010-11-18 08:27:23 +000064 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
vinayakb09a36972011-01-06 23:41:16 +000067 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb930fc212011-08-05 06:16:37 +000069 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000070 <version>0.2.1</version>
vinayakb930fc212011-08-05 06:16:37 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
75 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb09a36972011-01-06 23:41:16 +000076 <artifactId>hyracks-test-support</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000077 <version>0.2.1</version>
vinayakb09a36972011-01-06 23:41:16 +000078 <type>jar</type>
79 <scope>test</scope>
80 </dependency>
vinayakb25206b62012-03-13 08:50:40 +000081 <dependency>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>hyracks-data-std</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000084 <version>0.2.1</version>
vinayakb25206b62012-03-13 08:50:40 +000085 </dependency>
vinayakbceb734e2010-08-14 05:43:59 +000086 </dependencies>
87</project>