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