hive-hcatalog-pig-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.spark-project.hive.hcatalog</groupId> <artifactId>hive-hcatalog-pig-adapter</artifactId> <version>1.2.1.spark2</version> </dependency>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.spark-project.hive.hcatalog</groupId> <artifactId>hive-hcatalog</artifactId> <version>1.2.1.spark2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hive-hcatalog-pig-adapter</artifactId> <packaging>jar</packaging> <name>Hive HCatalog Pig Adapter</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.spark-project.hive.hcatalog</groupId> <artifactId>hive-hcatalog-core</artifactId> <version>${project.version}</version> </dependency> <!-- test intra-project --> <dependency> <groupId>org.spark-project.hive.hcatalog</groupId> <artifactId>hive-hcatalog-core</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>jline</groupId> <artifactId>jline</artifactId> <version>0.9.94</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spark-project.hive</groupId> <artifactId>hive-exec</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>hadoop-1</id> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <version>${hadoop-20S.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-test</artifactId> <version>${hadoop-20S.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.pig</groupId> <artifactId>pig</artifactId> <version>${pig.version}</version> </dependency> <dependency> <!--this should be automatically brought in by Pig, it's not in Pig 0.12 due to a bug in Pig which requires it This is fixed in Pig's pom file in ASF trunk (pig 13)--> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.2</version> </dependency> </dependencies> </profile> <profile> <id>hadoop-2</id> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop-23.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-jobclient</artifactId> <version>${hadoop-23.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>${hadoop-23.version}</version> </dependency> <dependency> <groupId>org.apache.pig</groupId> <artifactId>pig</artifactId> <version>${pig.version}</version> <classifier>h2</classifier> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop-23.version}</version> <scope>test</scope> </dependency> <dependency> <!--this should be automatically brought in by Pig, it's not in Pig 0.12 due to a bug in Pig which requires it This is fixed in Pig's pom file in ASF trunk (pig 13)--> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.2</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop-23.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-common</artifactId> <version>${hadoop-23.version}</version> <optional>true</optional> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop-23.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-servlet</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> </project>