blob: 2dbb7888c3968f9b66321f3837d04139c95d1f6f [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
vinayakb1ca34f42013-03-25 03:17:01 +00002<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/xsd/maven-4.0.0.xsd">
buyingyi55df5212013-03-24 07:20:08 +00003 <modelVersion>4.0.0</modelVersion>
4 <artifactId>hivesterix-common</artifactId>
5 <name>hivesterix-common</name>
6
7 <parent>
8 <artifactId>hivesterix</artifactId>
9 <groupId>edu.uci.ics.hyracks</groupId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070010 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000011 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.7</source>
21 <target>1.7</target>
22 <encoding>UTF-8</encoding>
23 <fork>true</fork>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28
29 <dependencies>
30 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-api</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070033 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000034 <type>jar</type>
35 <scope>compile</scope>
36 </dependency>
37 <dependency>
38 <groupId>edu.uci.ics.hyracks</groupId>
39 <artifactId>algebricks-compiler</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070040 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000041 <type>jar</type>
42 <scope>compile</scope>
43 </dependency>
44 <dependency>
45 <groupId>edu.uci.ics.hyracks</groupId>
46 <artifactId>hyracks-hdfs-core</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070047 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000048 <type>jar</type>
49 <scope>compile</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.hadoop.hive</groupId>
53 <artifactId>hive-exec</artifactId>
54 <version>0.7.0</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58 </dependencies>
59</project>