build against hadoop 1.0.3 / hive 0.11.0

master
Larry Ogrodnek 2013-10-30 12:54:52 -07:00
parent 81c5d44a2a
commit 339658b5f1
1 changed files with 87 additions and 85 deletions

16
pom.xml
View File

@ -1,21 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bizo</groupId>
<artifactId>csv-serde</artifactId>
<version>1.1.2-0.8.1</version>
<version>1.1.2-0.11.0</version>
<dependencies>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
<version>0.8.1</version>
<version>0.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>0.20.2</version>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
@ -27,14 +25,18 @@
<artifactId>jdo2-api</artifactId>
<version>2.3-20090302111651</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<!-- use UTF-8 for everything -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>