Hive is a data warehouse infrastructure built on top of Hadoop see http://wiki.apache.org/hadoop/Hive.
Here is the list of declaration for hive-common. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-common</artifactId> <version>0.8.0</version> </dependency>
If you think this Maven repository POM file listing for hive-common is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The hive-common-0.8.0 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Database | hive-shims 0.8.0 Hive is a data warehouse infrastructure built on top of Hadoop see http://wiki.apache.org/hadoop/Hive | 6 |
Console | commons-cli 1.2 Commons CLI provides a simple API for presenting, processing and validating a command line interface. | 305 |
Data Structure | commons-lang 2.4 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 630 |
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
Log | log4j 1.2.16 Apache Log4j 1.2 | 683 |
The following packages are defined in the hive-common-0.8.0.jar
org.apache.hadoop.hive.common org.apache.hadoop.hive.common.classification org.apache.hadoop.hive.common.cli org.apache.hadoop.hive.common.io org.apache.hadoop.hive.common.metrics org.apache.hadoop.hive.conf
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Apache Maven 2 POM generated by Apache Ivy http://ant.apache.org/ivy/ Apache Ivy version: 2.1.0 20090925235825 --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.hive</groupId> <artifactId>hive-common</artifactId> <packaging>jar</packaging> <version>0.8.0</version> <url>http://hive.apache.org</url> <description>Hive is a data warehouse infrastructure built on top of Hadoop see http://wiki.apache.org/hadoop/Hive </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://svn.apache.org/repos/asf/hive/</url> </scm> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <version>0.20.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-shims</artifactId> <version>0.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>1.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>compile</scope> </dependency> </dependencies> </project>