diff --git a/gcloud-java-bigquery/README.md b/gcloud-java-bigquery/README.md index 077e4fbc332a..7fe65b5600c2 100644 --- a/gcloud-java-bigquery/README.md +++ b/gcloud-java-bigquery/README.md @@ -5,7 +5,7 @@ Java idiomatic client for [Google Cloud BigQuery] (https://cloud.google.com/bigq [![Build Status](https://travis-ci.org/GoogleCloudPlatform/gcloud-java.svg?branch=master)](https://travis-ci.org/GoogleCloudPlatform/gcloud-java) [![Coverage Status](https://coveralls.io/repos/GoogleCloudPlatform/gcloud-java/badge.svg?branch=master)](https://coveralls.io/r/GoogleCloudPlatform/gcloud-java?branch=master) - +[![Maven](https://img.shields.io/maven-central/v/com.google.gcloud/gcloud-java-bigquery.svg)]( https://img.shields.io/maven-central/v/com.google.gcloud/gcloud-java-bigquery.svg) - [Homepage] (https://googlecloudplatform.github.io/gcloud-java/) - [API Documentation] (http://googlecloudplatform.github.io/gcloud-java/apidocs/index.html?com/google/gcloud/bigquery/package-summary.html) @@ -16,18 +16,26 @@ Java idiomatic client for [Google Cloud BigQuery] (https://cloud.google.com/bigq Quickstart ---------- If you are using Maven, add this to your pom.xml file - - +```xml + + com.google.gcloud + gcloud-java-bigquery + 0.1.1 + +``` If you are using Gradle, add this to your dependencies - - +```Groovy +compile 'com.google.gcloud:gcloud-java-bigquery:0.1.1' +``` If you are using SBT, add this to your dependencies - +```Scala +libraryDependencies += "com.google.gcloud" % "gcloud-java-bigquery" % "0.1.1" +``` Example Application ------------------- - - +- [`BigQueryExample`](https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/gcloud-java-examples/src/main/java/com/google/gcloud/examples/BigQueryExample.java) - A simple command line interface providing some of Cloud BigQuery's functionality. +Read more about using this application on the [`gcloud-java-examples` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/BigQueryExample.html). Authentication --------------