zoukankan      html  css  js  c++  java
  • maven hadoop ,hbase,hive依赖

    <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>MyHbase</groupId>
      <artifactId>hbase</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>jar</packaging>
    
      <name>hbase</name>
      <url>http://maven.apache.org</url>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
          <scope>test</scope>
        </dependency>
        <dependency>
    	    <groupId>org.apache.hadoop</groupId>
    	    <artifactId>hadoop-common</artifactId>
    	    <version>2.6.5</version>
    	</dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.hbase/hbase -->
    	<dependency>
    	    <groupId>org.apache.hbase</groupId>
    	    <artifactId>hbase</artifactId>
    	    <version>0.98.12.1-hadoop2</version>
    	    <type>pom</type>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.apache.hbase/hbase-common -->
    	<dependency>
    	    <groupId>org.apache.hbase</groupId>
    	    <artifactId>hbase-common</artifactId>
    	    <version>0.98.12.1-hadoop2</version>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.apache.hbase/hbase-client -->
    	<dependency>
    	    <groupId>org.apache.hbase</groupId>
    	    <artifactId>hbase-client</artifactId>
    	    <version>0.98.12.1-hadoop2</version>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.apache.hbase/hbase-server -->
    	<dependency>
    	    <groupId>org.apache.hbase</groupId>
    	    <artifactId>hbase-server</artifactId>
    	    <version>0.98.12.1-hadoop2</version>
    	</dependency>
    	
        <!-- https://mvnrepository.com/artifact/org.apache.hive/hive-exec -->
    	<dependency>
    	    <groupId>org.apache.hive</groupId>
    	    <artifactId>hive-exec</artifactId>
    	    <version>1.2.1</version>
    	</dependency>
        
      </dependencies>
    </project>
    

      

  • 相关阅读:
    第四百九十六天 how can I 坚持
    第四百九十四、五天 how can I 坚持
    第四百九十三天 how can I 坚持
    第四百九十二天 how can I 坚持
    第四百九十一天 how can I 坚持
    第四百九十天 how can I 坚持
    第四百八十九天 how can I 坚持
    第四百八十八天 how can I 坚持
    第四百八十七天 how can I 坚持
    第四百八十六天 how can I 坚持
  • 原文地址:https://www.cnblogs.com/huiandong/p/9436472.html
Copyright © 2011-2022 走看看