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>
    

      

  • 相关阅读:
    java实现操作系统磁盘寻道先来先服务算法
    专业素养:发布文件,别忘了给出校验信息
    vue系列教程-08vue的动画和过渡效果
    vue系列教程-07vue动态绑定样式
    vue系列教程-06vue的事件处理
    vue系列教程-05vue常用指令
    vue系列教程-04vue数据处理和页面渲染
    vue系列教程-03vuejs的结构和生命周期
    vue系列教程-01第一个vue程序
    vue系列教程-02什么是mvvm和spa
  • 原文地址:https://www.cnblogs.com/huiandong/p/9436472.html
Copyright © 2011-2022 走看看