blob: bcacc940627f0bb916ff42b2346bd47caad6abc5 [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.examples</groupId>
4 <artifactId>hadoop-compat-example</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
6 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +00007 <name>hadoop-compat-example</name>
vinayakb0c860392012-10-06 18:47:20 +00008
9 <parent>
10 <groupId>edu.uci.ics.hyracks</groupId>
11 <artifactId>hyracks-examples</artifactId>
12 <version>0.2.2-SNAPSHOT</version>
13 </parent>
14
15 <modules>
16 <module>hadoopcompathelper</module>
17 <module>hadoopcompatclient</module>
18 <module>hadoopcompatapp</module>
19 </modules>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.apache.hadoop</groupId>
24 <artifactId>hadoop-core</artifactId>
25 <version>0.20.2</version>
26 <type>jar</type>
27 <scope>compile</scope>
28 </dependency>
29
30 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-hadoop-compat</artifactId>
33 <version>0.2.2-SNAPSHOT</version>
34 <type>jar</type>
35 <scope>compile</scope>
36 </dependency>
37 </dependencies>
38</project>