blob: 0ba73bdf0025293e51f3efd10ac42be28222c353 [file] [log] [blame]
buyingyi91176182013-03-09 07:40:05 +00001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <artifactId>hivesterix</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <version>0.2.3-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>hivesterix-serde</artifactId>
13 <name>hivesterix-serde</name>
14
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <version>2.0.2</version>
21 <configuration>
22 <source>1.7</source>
23 <target>1.7</target>
24 <encoding>UTF-8</encoding>
25 <fork>true</fork>
26 </configuration>
27 </plugin>
28 </plugins>
29 </build>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.apache.hadoop.hive</groupId>
34 <artifactId>hive-serde</artifactId>
35 <version>0.7.0</version>
36 <type>jar</type>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.apache.hadoop.hive</groupId>
41 <artifactId>hive-common</artifactId>
42 <version>0.7.0</version>
43 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>algebricks-compiler</artifactId>
49 <version>0.2.3-SNAPSHOT</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-core</artifactId>
56 <version>0.20.2</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <version>3.8.1</version>
64 <scope>test</scope>
65 </dependency>
66 </dependencies>
67</project>