blob: 71504201daa01587b20b4d89cd9aae6846933e24 [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.compat</groupId>
4 <artifactId>hadoopcompathelper</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>hadoop-compat-example</artifactId>
10 <version>0.2.2-SNAPSHOT</version>
11 </parent>
12
13 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
17 <version>0.2.2-SNAPSHOT</version>
18 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks</groupId>
22 <artifactId>hyracks-api</artifactId>
23 <version>0.2.2-SNAPSHOT</version>
24 <scope>compile</scope>
25 </dependency>
26 </dependencies>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <version>2.0.2</version>
33 <configuration>
34 <source>1.6</source>
35 <target>1.6</target>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40</project>