Skip to content

Commit

Permalink
Merge pull request #509 from mziccard/master
Browse files Browse the repository at this point in the history
Add dependency code to BigQuery README
  • Loading branch information
ajkannan committed Dec 28, 2015
2 parents 869fed3 + ab5ab13 commit ca0c265
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 14 deletions.
24 changes: 16 additions & 8 deletions gcloud-java-bigquery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<!-- TODO(mziccard): add in the maven shield once the artifact is pushed to maven -->
[![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)
Expand All @@ -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
<!-- TODO(mziccard): add mvn dependency code -->

```xml
<dependency>
<groupId>com.google.gcloud</groupId>
<artifactId>gcloud-java-bigquery</artifactId>
<version>0.1.1</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
<!-- TODO(mziccard): add gradle dependency code -->

```Groovy
compile 'com.google.gcloud:gcloud-java-bigquery:0.1.1'
```
If you are using SBT, add this to your dependencies
<!-- TODO(mziccard): add sbt dependency code -->
```Scala
libraryDependencies += "com.google.gcloud" % "gcloud-java-bigquery" % "0.1.1"
```

Example Application
-------------------

<!-- TODO(mziccard): add 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
--------------
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java-core:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java-core:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java-datastore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java-datastore:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java-datastore:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java-examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java-examples:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java-examples:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java-resourcemanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java-resourcemanager:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java-resourcemanager:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java-storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java-storage:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java-storage:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down
2 changes: 1 addition & 1 deletion gcloud-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you are using Maven, add this to your pom.xml file
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.gcloud:gcloud-java:jar:0.1.1'
compile 'com.google.gcloud:gcloud-java:0.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
Expand Down

0 comments on commit ca0c265

Please sign in to comment.