MVN

com.google.cloud.bigtable : bigtable-hbase-dataflow-tools

Maven & Gradle

Feb 21, 2021

This project contains artifacts that provide utility functions for Cloud Bigtable client readers and writers in Google Cloud Dataflow. Dataflow includes a different version of the cloud bigtable client, resulting in a need to have a separation of concerns and an abstraction. More importantly, there is a need for shading and renaming of packages so that Dataflow nad bigtable-hbase-dataflow's two sets of shading (needed for a variety of reasons) don't clash with each other. This submodule does package renaming which is needed for bigtable-hbase-dataflow and alleviates some issues related to developing that module.

<dependency>
    <groupId>com.google.cloud.bigtable</groupId>
    <artifactId>bigtable-hbase-dataflow-tools</artifactId>
    <version>0.9.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.cloud.bigtable : bigtable-hbase-dataflow-tools to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9.1

All Versions

Choose a version of com.google.cloud.bigtable : bigtable-hbase-dataflow-tools to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.9.x
bigtable-hbase-dataflow-tools-0.9.1
bigtable-hbase-dataflow-tools-0.9.0

How to add a dependency to Maven

Add the following com.google.cloud.bigtable : bigtable-hbase-dataflow-tools maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.cloud.bigtable</groupId>
    <artifactId>bigtable-hbase-dataflow-tools</artifactId>
    <version>0.9.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.cloud.bigtable : bigtable-hbase-dataflow-tools gradle dependency to your build.gradle file:

implementation 'com.google.cloud.bigtable:bigtable-hbase-dataflow-tools:0.9.1'

Gradle Kotlin DSL: Add the following com.google.cloud.bigtable : bigtable-hbase-dataflow-tools gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.cloud.bigtable:bigtable-hbase-dataflow-tools:0.9.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.cloud.bigtable : bigtable-hbase-dataflow-tools sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.cloud.bigtable" % "bigtable-hbase-dataflow-tools" % "0.9.1"