Skip to content

Commit 991d52c

Browse files
committed
---
yaml --- r: 8765 b: refs/heads/lesv-patch-1 c: 3777539 h: refs/heads/master i: 8763: 8a4e8fa
1 parent 371a36e commit 991d52c

160 files changed

Lines changed: 663 additions & 2656 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ refs/tags/v0.22.0: 18b298fe4bfe8ec2f20b0e0bf7ffdcce5cc3c5fe
6666
refs/heads/vam-google-patch-1: d0c8fee3a4074d0bf7360ce8c4f7f7223d0ee7b9
6767
refs/heads/vam-google-patch-CODEOWNERS: 2ac1616e25229e51d08a984708ef1918f91a35ee
6868
refs/heads/danoscarmike-patch-1: 7342a9916bce4ed00002c7202e2a16c5d46afaea
69-
refs/heads/lesv-patch-1: 6408b03240d9701f1c80a776e7897ceefa5aa2c2
69+
refs/heads/lesv-patch-1: 3777539df63f4e023842ae3515bc96ec6fc49690
7070
refs/heads/ml-update-branch: 079dd6610017f5c51b9d1938c12d6d55b61513cf
7171
refs/heads/vkedia-patch-2: 7d8241388a9769a5c069334761b06c7012c878e7
7272
refs/heads/vkedia-patch-3: 4d128043acaa7db9160faf439d2ca6104e8a88cb

branches/lesv-patch-1/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: java
2-
dist: trusty
2+
dist: precise
33
matrix:
44
include:
55
- os: linux

branches/lesv-patch-1/APPENGINE.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
Use Google Cloud Java Client with Google App Engine Java 8
1+
Use Google Cloud Java Client with Google App Engine
22
=================================================
33

4-
** Note: Google App Engine Java 7 is not supported by the google-cloud-java library. **
5-
64
** Note: the following instructions are not required for App Engine Flex and Java 8 standard environment. **
75

86
Quickstart
@@ -11,7 +9,7 @@ This file provides extra instructions to set up Google Cloud Java Client with Go
119

1210
See [Google Cloud JavaQuickstart](./README.md#quickstart) for general instructions on using Google Cloud Java.
1311

14-
See [Quickstart for App Engine Standard Environment for Java](https://cloud.google.com/appengine/docs/standard/java/quickstart-java8) for extra Google App Engine instructions.
12+
See [Quickstart for App Engine Standard Environment for Java](https://cloud.google.com/appengine/docs/standard/java/quickstart) for extra Google App Engine instructions.
1513

1614
If you are using Maven, add this to your pom.xml file
1715
```xml
@@ -24,11 +22,11 @@ If you are using Maven, add this to your pom.xml file
2422

2523
If you are using Gradle, add this to your dependencies
2624
```Groovy
27-
compile 'com.google.appengine:appengine-api-1.0-sdk:1.9.56'
25+
compile 'com.google.appengine:appengine-api-1.0-sdk:1.9.50'
2826
```
2927
If you are using SBT, add this to your dependencies
3028
```Scala
31-
libraryDependencies += "com.google.appengine" % "appengine-api-1.0-sdk" % "1.9.56"
29+
libraryDependencies += "com.google.appengine" % "appengine-api-1.0-sdk" % "1.9.50"
3230
```
3331

3432
To test with local dev server, run

branches/lesv-patch-1/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ If you are using Maven, add this to your pom.xml file
4949
<dependency>
5050
<groupId>com.google.cloud</groupId>
5151
<artifactId>google-cloud</artifactId>
52-
<version>0.24.0-alpha</version>
52+
<version>0.22.0-alpha</version>
5353
</dependency>
5454
```
5555
If you are using Gradle, add this to your dependencies
5656
```Groovy
57-
compile 'com.google.cloud:google-cloud:0.24.0-alpha'
57+
compile 'com.google.cloud:google-cloud:0.22.0-alpha'
5858
```
5959
If you are using SBT, add this to your dependencies
6060
```Scala
61-
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.24.0-alpha"
61+
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.22.0-alpha"
6262
```
6363

6464
For running on Google App Engine, see [more instructions here](./APPENGINE.md).

branches/lesv-patch-1/google-cloud-bigquery/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
2222
<dependency>
2323
<groupId>com.google.cloud</groupId>
2424
<artifactId>google-cloud-bigquery</artifactId>
25-
<version>0.24.0-beta</version>
25+
<version>0.22.0-beta</version>
2626
</dependency>
2727
```
2828
If you are using Gradle, add this to your dependencies
2929
```Groovy
30-
compile 'com.google.cloud:google-cloud-bigquery:0.24.0-beta'
30+
compile 'com.google.cloud:google-cloud-bigquery:0.22.0-beta'
3131
```
3232
If you are using SBT, add this to your dependencies
3333
```Scala
34-
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "0.24.0-beta"
34+
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "0.22.0-beta"
3535
```
3636

3737
Example Application

branches/lesv-patch-1/google-cloud-bigquery/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>google-cloud-bigquery</artifactId>
5-
<version>0.24.1-beta-SNAPSHOT</version>
5+
<version>0.22.1-beta-SNAPSHOT</version>
66
<packaging>jar</packaging>
77
<name>Google Cloud BigQuery</name>
88
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-bigquery</url>
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.google.cloud</groupId>
1414
<artifactId>google-cloud-pom</artifactId>
15-
<version>0.24.1-alpha-SNAPSHOT</version>
15+
<version>0.22.1-alpha-SNAPSHOT</version>
1616
</parent>
1717
<properties>
1818
<site.installationModule>google-cloud-bigquery</site.installationModule>

branches/lesv-patch-1/google-cloud-compute/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
2222
<dependency>
2323
<groupId>com.google.cloud</groupId>
2424
<artifactId>google-cloud-compute</artifactId>
25-
<version>0.24.0-alpha</version>
25+
<version>0.22.0-alpha</version>
2626
</dependency>
2727
```
2828
If you are using Gradle, add this to your dependencies
2929
```Groovy
30-
compile 'com.google.cloud:google-cloud-compute:0.24.0-alpha'
30+
compile 'com.google.cloud:google-cloud-compute:0.22.0-alpha'
3131
```
3232
If you are using SBT, add this to your dependencies
3333
```Scala
34-
libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.24.0-alpha"
34+
libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.22.0-alpha"
3535
```
3636

3737
Example Application

branches/lesv-patch-1/google-cloud-compute/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>google-cloud-compute</artifactId>
5-
<version>0.24.1-alpha-SNAPSHOT</version>
5+
<version>0.22.1-alpha-SNAPSHOT</version>
66
<packaging>jar</packaging>
77
<name>Google Cloud Compute</name>
88
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-compute</url>
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.google.cloud</groupId>
1414
<artifactId>google-cloud-pom</artifactId>
15-
<version>0.24.1-alpha-SNAPSHOT</version>
15+
<version>0.22.1-alpha-SNAPSHOT</version>
1616
</parent>
1717
<properties>
1818
<site.installationModule>google-cloud-compute</site.installationModule>

branches/lesv-patch-1/google-cloud-contrib/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ If you are using Maven, add this to your pom.xml file
2525
<dependency>
2626
<groupId>com.google.cloud</groupId>
2727
<artifactId>google-cloud-contrib</artifactId>
28-
<version>0.24.0-alpha</version>
28+
<version>0.22.0-alpha</version>
2929
</dependency>
3030
```
3131
If you are using Gradle, add this to your dependencies
3232
```Groovy
33-
compile 'com.google.cloud:google-cloud-contrib:0.24.0-alpha'
33+
compile 'com.google.cloud:google-cloud-contrib:0.22.0-alpha'
3434
```
3535
If you are using SBT, add this to your dependencies
3636
```Scala
37-
libraryDependencies += "com.google.cloud" % "google-cloud-contrib" % "0.24.0-alpha"
37+
libraryDependencies += "com.google.cloud" % "google-cloud-contrib" % "0.22.0-alpha"
3838
```
3939

4040
### google-cloud-nio-examples

branches/lesv-patch-1/google-cloud-contrib/google-cloud-logging-logback/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-logging-logback</artifactId>
22-
<version>0.24.0-alpha</version>
22+
<version>0.22.0-alpha</version>
2323
</dependency>
2424
```
2525
If you are using Gradle, add this to your dependencies
2626
```Groovy
27-
compile 'com.google.cloud:google-cloud-logging-logback:0.24.0-alpha'
27+
compile 'com.google.cloud:google-cloud-logging-logback:0.22.0-alpha'
2828
```
2929
If you are using SBT, add this to your dependencies
3030
```Scala
31-
libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.24.0-alpha"
31+
libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.22.0-alpha"
3232
```
3333

3434
Usage

0 commit comments

Comments
 (0)