Download hive-contrib-2.2.0.jar file

Introduction

You can download hive-contrib-2.2.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

hive-contrib-2.2.0.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.hive/hive-contrib/pom.properties
META-INF/maven/org.apache.hive/hive-contrib/pom.xml
org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat.class
org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextOutputFormat.class
org.apache.hadoop.hive.contrib.genericudf.example.GenericUDFAdd10.class
org.apache.hadoop.hive.contrib.genericudf.example.GenericUDFDBOutput.class
org.apache.hadoop.hive.contrib.metastore.hooks.SampleURLHook.class
org.apache.hadoop.hive.contrib.mr.GenericMR.class
org.apache.hadoop.hive.contrib.mr.Mapper.class
org.apache.hadoop.hive.contrib.mr.Output.class
org.apache.hadoop.hive.contrib.mr.Reducer.class
org.apache.hadoop.hive.contrib.mr.example.IdentityMapper.class
org.apache.hadoop.hive.contrib.mr.example.WordCountReduce.class
org.apache.hadoop.hive.contrib.serde2.MultiDelimitSerDe.class
org.apache.hadoop.hive.contrib.serde2.RegexSerDe.class
org.apache.hadoop.hive.contrib.serde2.TypedBytesSerDe.class
org.apache.hadoop.hive.contrib.serde2.s3.S3LogDeserializer.class
org.apache.hadoop.hive.contrib.serde2.s3.S3LogStruct.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleAvg.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleGroupConcat.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleMax.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleMaxMinNUtil.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleMaxN.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleMin.class
org.apache.hadoop.hive.contrib.udaf.example.UDAFExampleMinN.class
org.apache.hadoop.hive.contrib.udf.UDFRowSequence.class
org.apache.hadoop.hive.contrib.udf.example.UDFExampleAdd.class
org.apache.hadoop.hive.contrib.udf.example.UDFExampleArraySum.class
org.apache.hadoop.hive.contrib.udf.example.UDFExampleFormat.class
org.apache.hadoop.hive.contrib.udf.example.UDFExampleMapConcat.class
org.apache.hadoop.hive.contrib.udf.example.UDFExampleStructPrint.class
org.apache.hadoop.hive.contrib.udtf.example.GenericUDTFCount2.class
org.apache.hadoop.hive.contrib.udtf.example.GenericUDTFExplode2.class
org.apache.hadoop.hive.contrib.util.typedbytes.Type.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesInput.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesOutput.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesRecordInput.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesRecordOutput.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesRecordReader.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesRecordWriter.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesWritable.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesWritableInput.class
org.apache.hadoop.hive.contrib.util.typedbytes.TypedBytesWritableOutput.class

Pom

hive-contrib-2.2.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<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>
  <parent>
    <groupId>org.apache.hive</groupId>
    <artifactId>hive</artifactId>
    <version>2.2.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>hive-contrib</artifactId>
  <packaging>jar</packaging>
  <name>Hive Contrib</name>

  <properties>
    <hive.path.to.root>..</hive.path.to.root>
  </properties>

  <dependencies>
    <!-- dependencies are always listed in sorted order by groupId, artifectId -->
    <!-- intra-project -->
    <dependency>
      <groupId>org.apache.hive</groupId>
      <artifactId>hive-exec</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.hive</groupId>
      <artifactId>hive-serde</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.hive</groupId>
      <artifactId>hive-shims</artifactId>
      <version>${project.version}</version>
    </dependency>
    <!-- inter-project -->
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>${commons-codec.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.hadoop</groupId>
      <artifactId>hadoop-common</artifactId>
      <version>${hadoop.version}</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.apache.hadoop</groupId>
      <artifactId>hadoop-mapreduce-client-core</artifactId>
      <version>${hadoop.version}</version>
      <optional>true</optional>
    </dependency>

    <!-- test inter-project -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <sourceDirectory>${basedir}/src/java</sourceDirectory>
    <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
  </build>

</project>

POM Entry

<dependency>
   <groupId>org.apache.hive</groupId>
   <artifactId>hive-contrib</artifactId>
   <version>2.2.0</version>
</dependency>

Download

If you think the following hive-contrib-2.2.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download hive-contrib-2.2.0.jar file




PreviousNext

Related