blob: f277575171f916428b9e14bd7ddbad86e347c170 [file] [log] [blame]
vinayakbf93682a2010-08-13 11:19:19 +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</groupId>
4 <artifactId>hyracks-dataflow-hadoop</artifactId>
5 <version>0.1.0</version>
6 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 </plugins>
18 </build>
19 <dependencies>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks</groupId>
22 <artifactId>hyracks-api</artifactId>
23 <version>0.1.0</version>
24 <type>jar</type>
25 <scope>compile</scope>
26 </dependency>
27 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-dataflow-common</artifactId>
30 <version>0.1.0</version>
31 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.apache.hadoop</groupId>
36 <artifactId>hadoop-core</artifactId>
37 <version>0.20.2</version>
38 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.dcache</groupId>
43 <artifactId>dcache-client</artifactId>
44 <version>0.0.1</version>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>edu.uci.ics.hyracks</groupId>
49 <artifactId>hyracks-dataflow-std</artifactId>
50 <version>0.1.0</version>
51 <scope>compile</scope>
52 </dependency>
53 </dependencies>
54</project>