Skip to content

Commit ca0c265

Browse files
committed
Merge pull request #509 from mziccard/master
Add dependency code to BigQuery README
2 parents 869fed3 + ab5ab13 commit ca0c265

7 files changed

Lines changed: 22 additions & 14 deletions

File tree

gcloud-java-bigquery/README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Java idiomatic client for [Google Cloud BigQuery] (https://cloud.google.com/bigq
55

66
[![Build Status](https://travis-ci.org/GoogleCloudPlatform/gcloud-java.svg?branch=master)](https://travis-ci.org/GoogleCloudPlatform/gcloud-java)
77
[![Coverage Status](https://coveralls.io/repos/GoogleCloudPlatform/gcloud-java/badge.svg?branch=master)](https://coveralls.io/r/GoogleCloudPlatform/gcloud-java?branch=master)
8-
<!-- TODO(mziccard): add in the maven shield once the artifact is pushed to maven -->
8+
[![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)
99

1010
- [Homepage] (https://googlecloudplatform.github.io/gcloud-java/)
1111
- [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
1616
Quickstart
1717
----------
1818
If you are using Maven, add this to your pom.xml file
19-
<!-- TODO(mziccard): add mvn dependency code -->
20-
19+
```xml
20+
<dependency>
21+
<groupId>com.google.gcloud</groupId>
22+
<artifactId>gcloud-java-bigquery</artifactId>
23+
<version>0.1.1</version>
24+
</dependency>
25+
```
2126
If you are using Gradle, add this to your dependencies
22-
<!-- TODO(mziccard): add gradle dependency code -->
23-
27+
```Groovy
28+
compile 'com.google.gcloud:gcloud-java-bigquery:0.1.1'
29+
```
2430
If you are using SBT, add this to your dependencies
25-
<!-- TODO(mziccard): add sbt dependency code -->
31+
```Scala
32+
libraryDependencies += "com.google.gcloud" % "gcloud-java-bigquery" % "0.1.1"
33+
```
2634

2735
Example Application
2836
-------------------
29-
30-
<!-- TODO(mziccard): add example application -->
37+
- [`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.
38+
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).
3139

3240
Authentication
3341
--------------

gcloud-java-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you are using Maven, add this to your pom.xml file
2222
```
2323
If you are using Gradle, add this to your dependencies
2424
```Groovy
25-
compile 'com.google.gcloud:gcloud-java-core:jar:0.1.1'
25+
compile 'com.google.gcloud:gcloud-java-core:0.1.1'
2626
```
2727
If you are using SBT, add this to your dependencies
2828
```Scala

gcloud-java-datastore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
2525
```
2626
If you are using Gradle, add this to your dependencies
2727
```Groovy
28-
compile 'com.google.gcloud:gcloud-java-datastore:jar:0.1.1'
28+
compile 'com.google.gcloud:gcloud-java-datastore:0.1.1'
2929
```
3030
If you are using SBT, add this to your dependencies
3131
```Scala

gcloud-java-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you are using Maven, add this to your pom.xml file
2222
```
2323
If you are using Gradle, add this to your dependencies
2424
```Groovy
25-
compile 'com.google.gcloud:gcloud-java-examples:jar:0.1.1'
25+
compile 'com.google.gcloud:gcloud-java-examples:0.1.1'
2626
```
2727
If you are using SBT, add this to your dependencies
2828
```Scala

gcloud-java-resourcemanager/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
2525
```
2626
If you are using Gradle, add this to your dependencies
2727
```Groovy
28-
compile 'com.google.gcloud:gcloud-java-resourcemanager:jar:0.1.1'
28+
compile 'com.google.gcloud:gcloud-java-resourcemanager:0.1.1'
2929
```
3030
If you are using SBT, add this to your dependencies
3131
```Scala

gcloud-java-storage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you are using Maven, add this to your pom.xml file
2525
```
2626
If you are using Gradle, add this to your dependencies
2727
```Groovy
28-
compile 'com.google.gcloud:gcloud-java-storage:jar:0.1.1'
28+
compile 'com.google.gcloud:gcloud-java-storage:0.1.1'
2929
```
3030
If you are using SBT, add this to your dependencies
3131
```Scala

gcloud-java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If you are using Maven, add this to your pom.xml file
3030
```
3131
If you are using Gradle, add this to your dependencies
3232
```Groovy
33-
compile 'com.google.gcloud:gcloud-java:jar:0.1.1'
33+
compile 'com.google.gcloud:gcloud-java:0.1.1'
3434
```
3535
If you are using SBT, add this to your dependencies
3636
```Scala

0 commit comments

Comments
 (0)