Skip to content

Commit 3e51c19

Browse files
authored
Merge pull request #446 from GoogleCloudPlatform/tswast-clientlibsbeta
Use latest (beta) versions of cloud client libraries.
2 parents 1cd88bc + 4688b63 commit 3e51c19

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

bigquery/cloud-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-bigquery</artifactId>
40-
<version>0.7.0</version>
40+
<version>0.8.0-beta</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

datastore/cloud-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-datastore</artifactId>
40-
<version>0.7.0</version>
40+
<version>0.8.0-beta</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

datastore/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.google.cloud</groupId>
3737
<artifactId>google-cloud-datastore</artifactId>
38-
<version>0.7.0</version>
38+
<version>0.8.0-beta</version>
3939
</dependency>
4040

4141
<!-- Test dependencies -->

datastore/src/test/java/com/google/datastore/snippets/ConceptsTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import com.google.common.collect.ImmutableSet;
5252
import com.google.common.collect.Iterators;
5353

54+
import org.joda.time.Duration;
5455
import org.junit.AfterClass;
5556
import org.junit.Before;
5657
import org.junit.BeforeClass;
@@ -72,6 +73,7 @@
7273
import java.util.List;
7374
import java.util.Map;
7475
import java.util.TimeZone;
76+
import java.util.concurrent.TimeoutException;
7577

7678
/**
7779
* Contains Cloud Datastore snippets demonstrating concepts for documentation.
@@ -133,8 +135,8 @@ public void setUp() {
133135
* @throws InterruptedException if there are errors stopping the local Datastore
134136
*/
135137
@AfterClass
136-
public static void afterClass() throws IOException, InterruptedException {
137-
HELPER.stop();
138+
public static void afterClass() throws IOException, InterruptedException, TimeoutException {
139+
HELPER.stop(Duration.standardMinutes(1));
138140
}
139141

140142
private void assertValidKey(Key taskKey) {

flexible/cloudstorage/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.google.cloud</groupId>
5151
<artifactId>google-cloud-storage</artifactId>
52-
<version>0.7.0</version>
52+
<version>0.8.0-beta</version>
5353
</dependency>
5454
<!-- [END dependencies] -->
5555
</dependencies>

flexible/datastore/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.google.cloud</groupId>
5151
<artifactId>google-cloud-datastore</artifactId>
52-
<version>0.7.0</version>
52+
<version>0.8.0-beta</version>
5353
</dependency>
5454
<!-- [END dependencies] -->
5555
</dependencies>

language/cloud-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-language</artifactId>
40-
<version>0.7.0</version>
40+
<version>0.8.0</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

logging/cloud-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-logging</artifactId>
40-
<version>0.7.0</version>
40+
<version>0.8.0-beta</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
<module>flexible/static-files</module>
105105
<module>flexible/twilio</module>
106106
<module>language/analysis</module>
107+
<module>language/cloud-client</module>
107108
<module>logging</module>
108109
<module>logging/cloud-client</module>
109110
<module>monitoring/v2</module>

storage/cloud-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-storage</artifactId>
40-
<version>0.7.0</version>
40+
<version>0.8.0-beta</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

0 commit comments

Comments
 (0)