build against hadoop 1.0.3 / hive 0.11.0
This commit is contained in:
parent
81c5d44a2a
commit
339658b5f1
170
pom.xml
170
pom.xml
@ -1,91 +1,93 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.bizo</groupId>
|
||||||
<groupId>com.bizo</groupId>
|
<artifactId>csv-serde</artifactId>
|
||||||
<artifactId>csv-serde</artifactId>
|
<version>1.1.2-0.11.0</version>
|
||||||
<version>1.1.2-0.8.1</version>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
<dependencies>
|
<groupId>org.apache.hive</groupId>
|
||||||
<dependency>
|
<artifactId>hive-exec</artifactId>
|
||||||
<groupId>org.apache.hive</groupId>
|
<version>0.11.0</version>
|
||||||
<artifactId>hive-exec</artifactId>
|
</dependency>
|
||||||
<version>0.8.1</version>
|
<dependency>
|
||||||
</dependency>
|
<groupId>org.apache.hadoop</groupId>
|
||||||
<dependency>
|
<artifactId>hadoop-core</artifactId>
|
||||||
<groupId>org.apache.hadoop</groupId>
|
<version>1.0.3</version>
|
||||||
<artifactId>hadoop-core</artifactId>
|
</dependency>
|
||||||
<version>0.20.2</version>
|
<dependency>
|
||||||
</dependency>
|
<groupId>net.sf.opencsv</groupId>
|
||||||
<dependency>
|
<artifactId>opencsv</artifactId>
|
||||||
<groupId>net.sf.opencsv</groupId>
|
<version>2.3</version>
|
||||||
<artifactId>opencsv</artifactId>
|
</dependency>
|
||||||
<version>2.3</version>
|
<dependency>
|
||||||
</dependency>
|
<groupId>javax.jdo</groupId>
|
||||||
<dependency>
|
<artifactId>jdo2-api</artifactId>
|
||||||
<groupId>javax.jdo</groupId>
|
<version>2.3-20090302111651</version>
|
||||||
<artifactId>jdo2-api</artifactId>
|
</dependency>
|
||||||
<version>2.3-20090302111651</version>
|
<dependency>
|
||||||
</dependency>
|
<groupId>junit</groupId>
|
||||||
</dependencies>
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.11</version>
|
||||||
<properties>
|
<scope>test</scope>
|
||||||
<!-- use UTF-8 for everything -->
|
</dependency>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</dependencies>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<properties>
|
||||||
</properties>
|
<!-- use UTF-8 for everything -->
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<build>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<plugins>
|
</properties>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.6</source>
|
||||||
|
<target>1.6</target>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>2.2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<descriptors>
|
||||||
|
<descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor>
|
||||||
|
</descriptors>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>assemble-all</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<reportPlugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
<version>3.1</version>
|
<version>2.5.1</version>
|
||||||
<configuration>
|
|
||||||
<source>1.6</source>
|
|
||||||
<target>1.6</target>
|
|
||||||
<encoding>UTF-8</encoding>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
|
||||||
<version>2.2.1</version>
|
|
||||||
<configuration>
|
|
||||||
<descriptors>
|
|
||||||
<descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor>
|
|
||||||
</descriptors>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>assemble-all</id>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>single</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-site-plugin</artifactId>
|
|
||||||
<version>3.0</version>
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<reportPlugins>
|
<formats>
|
||||||
<plugin>
|
<format>html</format>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<format>xml</format>
|
||||||
<artifactId>cobertura-maven-plugin</artifactId>
|
</formats>
|
||||||
<version>2.5.1</version>
|
|
||||||
<configuration>
|
|
||||||
<formats>
|
|
||||||
<format>html</format>
|
|
||||||
<format>xml</format>
|
|
||||||
</formats>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</reportPlugins>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</reportPlugins>
|
||||||
</build>
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
</project>
|
</project>
|
Loading…
Reference in New Issue
Block a user