You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note: This client is a work-in-progress, and may occasionally
19
23
> make backwards-incompatible changes.
@@ -25,39 +29,32 @@ Add this to your pom.xml file
25
29
<dependency>
26
30
<groupId>com.google.gcloud</groupId>
27
31
<artifactId>gcloud-java</artifactId>
28
-
<version>0.0.10</version>
32
+
<version>0.0.7</version>
29
33
</dependency>
30
34
```
31
35
36
+
<!---
32
37
Example Applications
33
38
--------------------
34
39
35
-
-[`DatastoreExample`](https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/gcloud-java-examples/src/main/java/com/google/gcloud/examples/DatastoreExample.java) - A simple command line interface for the Cloud Datastore
36
-
- Read more about using this application on the [`gcloud-java-examples` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/DatastoreExample.html).
37
-
-[`StorageExample`](https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/gcloud-java-examples/src/main/java/com/google/gcloud/examples/StorageExample.java) - A simple command line interface providing some of Cloud Storage'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/StorageExample.html).
39
-
40
-
Authentication
41
-
--------------
42
-
43
-
There are multiple ways to authenticate to use Google Cloud services.
44
-
45
-
1. When using `gcloud-java` libraries from within Compute/App Engine, no additional authentication steps are necessary.
46
-
2. When using `gcloud-java` libraries elsewhere, there are two options:
47
-
*[Generate a JSON service account key](https://cloud.google.com/storage/docs/authentication?hl=en#service_accounts). Supply a path to the downloaded JSON credentials file when building the options supplied to datastore/storage constructor.
48
-
* If running locally for development/testing, you can use use [Google Cloud SDK](https://cloud.google.com/sdk/?hl=en). To use the SDK authentication, [download the SDK](https://cloud.google.com/sdk/?hl=en) if you haven't already. Then login using the SDK (`gcloud auth login` in command line), and set your current project using `gcloud config set project PROJECT_ID`.
40
+
- `java-datastore-sample`_ - A sample using Cloud Datastore
Google [Cloud Datastore][cloud-datastore] is a fully managed, schemaless database for
48
+
storing non-relational data. Cloud Datastore automatically scales with
49
+
your users and supports ACID transactions, high availability of reads and
50
+
writes, strong consistency for reads and ancestor queries, and eventual
51
+
consistency for all other queries.
55
52
56
-
*Follow the [activation instructions][cloud-datastore-activation] to use the Google Cloud Datastore API with your project.*
53
+
See the [Google Cloud Datastore docs][cloud-datastore-activation] for more details on how to activate
54
+
Cloud Datastore for your project.
57
55
58
-
#### Preview
59
-
60
-
Here is a code snippet showing a simple usage example from within Compute/App Engine. Note that you must [supply credentials](#authentication) and a project ID if running this snippet elsewhere.
56
+
See the ``gcloud-java`` API [datastore documentation][datastore-api] to learn how to interact
57
+
with the Cloud Datastore using this Client Library.
*Follow the [activation instructions][cloud-storage-activation] to use the Google Cloud Storage API with your project.*
89
+
Contributing
90
+
------------
98
91
99
-
#### Preview
92
+
Contributions to this library are always welcome and highly encouraged.
100
93
101
-
Here is a code snippet showing a simple usage example from within Compute/App Engine. Note that you must [supply credentials](#authentication) and a project ID if running this snippet elsewhere.
94
+
See [CONTRIBUTING] for more information on how to get started.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more information.
131
97
132
98
Java Versions
133
99
-------------
134
100
135
101
Java 7 or above is required for using this client.
136
102
137
-
Testing
138
-
-------
139
-
140
-
This library provides tools to help write tests for code that uses gcloud-java services.
141
-
142
-
See [TESTING] to read more about using our testing helpers.
143
-
144
103
Versioning
145
104
----------
146
105
@@ -150,15 +109,6 @@ It is currently in major version zero (``0.y.z``), which means that anything
150
109
may change at any time and the public API should not be considered
151
110
stable.
152
111
153
-
Contributing
154
-
------------
155
-
156
-
Contributions to this library are always welcome and highly encouraged.
157
-
158
-
See [CONTRIBUTING] for more information on how to get started.
159
-
160
-
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more information.
161
-
162
112
License
163
113
-------
164
114
@@ -168,7 +118,6 @@ Apache 2.0 - See [LICENSE] for more information.
0 commit comments