Skip to content

Commit fdabd32

Browse files
author
Ajay Kannan
committed
---
yaml --- r: 967 b: refs/heads/master c: 8cca008 h: refs/heads/master i: 965: 4ea4b34 963: f59738a 959: 5455f83 v: v3
1 parent 78dc424 commit fdabd32

22 files changed

Lines changed: 74 additions & 224 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
refs/heads/master: ad64788e9c3c810523e13d3470ceaa324a2bfc2c
2+
refs/heads/master: 8cca008b604c8bbf1059d4b1da64a822925bc3ee
33
refs/heads/travis: 0fa997e2fc9c6b61b2d91e6d163655aae67d44b6
44
refs/heads/gh-pages: 5a10432ecc75f29812e33a8236c900379509fe99

trunk/README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Add this to your pom.xml file
3030
<dependency>
3131
<groupId>com.google.gcloud</groupId>
3232
<artifactId>gcloud-java</artifactId>
33-
<version>0.0.9</version>
33+
<version>0.0.7</version>
3434
</dependency>
3535
```
3636

@@ -127,13 +127,6 @@ if (!blob.exists()) {
127127
}
128128
```
129129

130-
Testing
131-
-------
132-
133-
This library provides tools to help write tests for code that uses gcloud-java services.
134-
135-
See [TESTING] to read more about using our testing helpers.
136-
137130
Contributing
138131
------------
139132

@@ -166,7 +159,6 @@ Apache 2.0 - See [LICENSE] for more information.
166159
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/CONTRIBUTING.md
167160
[code-of-conduct]:https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/CODE_OF_CONDUCT.md
168161
[LICENSE]: https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/LICENSE
169-
[TESTING]: https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/TESTING.md
170162
[cloud-platform]: https://cloud.google.com/
171163
[cloud-datastore]: https://cloud.google.com/datastore/docs
172164
[cloud-datastore-docs]: https://cloud.google.com/datastore/docs

trunk/TESTING.md

Lines changed: 0 additions & 69 deletions
This file was deleted.

trunk/gcloud-java-core/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
1-
Google Cloud Java Client
2-
==========================
1+
Google Cloud Java Client -- Core Services
2+
=========================================
33

4-
Java idiomatic client for [Google Cloud Platform][cloud-platform] services.
4+
This module provides common functionality required by service-specific modules of this library.
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)
88

99
- [Homepage] (https://googlecloudplatform.github.io/gcloud-java/)
10-
- [API Documentation] (http://googlecloudplatform.github.io/gcloud-java/apidocs)
10+
- [API Documentation] (http://googlecloudplatform.github.io/gcloud-java/apidocs/index.html?com/google/gcloud/package-summary.html)
1111
- [Examples] (http://googlecloudplatform.github.io/gcloud-java/apidocs/index.html?com/google/gcloud/examples/package-summary.html)
1212

13-
This module provides common functionality and is required by the other service specific modules.
14-
1513
Quickstart
1614
----------
1715
Add this to your pom.xml file
1816
```xml
1917
<dependency>
2018
<groupId>com.google.gcloud</groupId>
2119
<artifactId>gcloud-java-core</artifactId>
22-
<version>0.0.9</version>
20+
<version>0.0.7</version>
2321
</dependency>
2422
```
2523

trunk/gcloud-java-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.gcloud</groupId>
1313
<artifactId>gcloud-java-pom</artifactId>
14-
<version>0.0.9</version>
14+
<version>0.0.8-SNAPSHOT</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>

trunk/gcloud-java-datastore/README.md

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
Google Cloud Java Client
2-
==========================
1+
Google Cloud Java Client for Datastore
2+
======================================
33

4-
Java idiomatic client for [Google Cloud Platform][cloud-platform] services.
4+
Java idiomatic client for [Google Cloud Datastore] (https://cloud.google.com/datastore/).
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)
88

99
- [Homepage] (https://googlecloudplatform.github.io/gcloud-java/)
10-
- [API Documentation] (http://googlecloudplatform.github.io/gcloud-java/apidocs)
10+
- [API Documentation] (http://googlecloudplatform.github.io/gcloud-java/apidocs/index.html?com/google/gcloud/datastore/package-summary.html)
1111
- [Examples] (http://googlecloudplatform.github.io/gcloud-java/apidocs/index.html?com/google/gcloud/examples/package-summary.html)
1212

13-
This client supports [Google Cloud Datastore] (https://cloud.google.com/datastore/)
14-
15-
1613
> Note: This client is a work-in-progress, and may occasionally
1714
> make backwards-incompatible changes.
1815
@@ -23,7 +20,7 @@ Add this to your pom.xml file
2320
<dependency>
2421
<groupId>com.google.gcloud</groupId>
2522
<artifactId>gcloud-java-datastore</artifactId>
26-
<version>0.0.9</version>
23+
<version>0.0.7</version>
2724
</dependency>
2825
```
2926

@@ -69,13 +66,6 @@ if (entity == null) {
6966
}
7067
```
7168

72-
Testing
73-
-------
74-
75-
This library has tools to help write tests for code that uses the Datastore.
76-
77-
See [TESTING] to read more about testing.
78-
7969
Contributing
8070
------------
8171

@@ -105,7 +95,6 @@ Apache 2.0 - See [LICENSE] for more information.
10595

10696
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/CONTRIBUTING.md
10797
[LICENSE]: https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/LICENSE
108-
[TESTING]: https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/TESTING.md#testing-code-that-uses-datastore
10998
[cloud-platform]: https://cloud.google.com/
11099
[cloud-datastore]: https://cloud.google.com/datastore/docs
111100
[cloud-datastore-docs]: https://cloud.google.com/datastore/docs

trunk/gcloud-java-datastore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.gcloud</groupId>
1313
<artifactId>gcloud-java-pom</artifactId>
14-
<version>0.0.9</version>
14+
<version>0.0.8-SNAPSHOT</version>
1515
</parent>
1616
<dependencies>
1717
<dependency>

trunk/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/testing/package-info.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

trunk/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreOptionsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import static org.junit.Assert.assertSame;
2323
import static org.junit.Assert.assertTrue;
2424

25-
import com.google.gcloud.datastore.testing.LocalGcdHelper;
2625
import com.google.gcloud.spi.DatastoreRpc;
2726
import com.google.gcloud.spi.DatastoreRpcFactory;
2827

trunk/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import com.google.gcloud.datastore.StructuredQuery.OrderBy;
3434
import com.google.gcloud.datastore.StructuredQuery.Projection;
3535
import com.google.gcloud.datastore.StructuredQuery.PropertyFilter;
36-
import com.google.gcloud.datastore.testing.LocalGcdHelper;
3736
import com.google.gcloud.spi.DatastoreRpc;
3837
import com.google.gcloud.spi.DatastoreRpc.DatastoreRpcException.Reason;
3938
import com.google.gcloud.spi.DatastoreRpcFactory;

0 commit comments

Comments
 (0)