Skip to content

Commit 773b9fe

Browse files
committed
---
yaml --- r: 2095 b: refs/heads/pubsub-alpha c: b762fd7 h: refs/heads/master i: 2093: e6b0534 2091: 2cdbdb3 2087: 33fe2dd 2079: eea926a
1 parent dc0cd66 commit 773b9fe

3 files changed

Lines changed: 17 additions & 10 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ refs/heads/master: 689bbb466df4b2d5d2483d6edb8ac5c7c7f7c6fa
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
6-
refs/heads/pubsub-alpha: 869fed35dcfa21ecdd7ca9bbdc83d2b78b0e4b58
6+
refs/heads/pubsub-alpha: b762fd798b72f7277ac234f6d1023b7bcddc9a26
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
88
refs/heads/update-datastore: 482954f2c5055231e5b3122ea91d2ba00ce8187c
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444

branches/pubsub-alpha/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
--------------

branches/pubsub-alpha/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/testing/LocalResourceManagerHelper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ private static void writeResponse(HttpExchange exchange, Response response) {
185185
exchange.getResponseHeaders().set("Content-type", "application/json; charset=UTF-8");
186186
OutputStream outputStream = exchange.getResponseBody();
187187
try {
188-
exchange.getResponseHeaders().add("Connection", "close");
189188
exchange.sendResponseHeaders(response.code(), response.body().length());
190189
outputStream.write(response.body().getBytes(StandardCharsets.UTF_8));
191190
outputStream.close();

0 commit comments

Comments
 (0)