blob: b53661b8ecf9f1f6c8a4f38359ddb5066178cdb1 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb1ca34f42013-03-25 03:17:01 +000016<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 +000017 <modelVersion>4.0.0</modelVersion>
18 <parent>
19 <artifactId>hivesterix</artifactId>
20 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi0f63d8b2013-07-22 11:33:10 -070021 <version>0.2.10-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000022 </parent>
23
24 <artifactId>hivesterix-serde</artifactId>
25 <name>hivesterix-serde</name>
26
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.7</source>
35 <target>1.7</target>
36 <encoding>UTF-8</encoding>
37 <fork>true</fork>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42
43 <dependencies>
44 <dependency>
buyingyi3ed00442013-07-09 23:46:43 -070045 <groupId>org.apache.hive</groupId>
buyingyi55df5212013-03-24 07:20:08 +000046 <artifactId>hive-serde</artifactId>
buyingyi3ed00442013-07-09 23:46:43 -070047 <version>0.11.0</version>
buyingyi55df5212013-03-24 07:20:08 +000048 <type>jar</type>
49 <scope>compile</scope>
50 </dependency>
51 <dependency>
buyingyi3ed00442013-07-09 23:46:43 -070052 <groupId>org.apache.hive</groupId>
buyingyi55df5212013-03-24 07:20:08 +000053 <artifactId>hive-common</artifactId>
buyingyi3ed00442013-07-09 23:46:43 -070054 <version>0.11.0</version>
buyingyi55df5212013-03-24 07:20:08 +000055 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58 <dependency>
59 <groupId>edu.uci.ics.hyracks</groupId>
60 <artifactId>algebricks-compiler</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070061 <version>0.2.10-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000062 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
buyingyi3ed00442013-07-09 23:46:43 -070066 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>hyracks-hdfs-core</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070068 <version>0.2.10-SNAPSHOT</version>
buyingyi3ed00442013-07-09 23:46:43 -070069 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
buyingyi55df5212013-03-24 07:20:08 +000072 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
buyingyi8027a492013-07-10 23:54:56 -070075 <version>4.8.1</version>
buyingyi55df5212013-03-24 07:20:08 +000076 <scope>test</scope>
77 </dependency>
78 </dependencies>
79</project>