File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,14 +20,22 @@ This client supports the following Google Cloud Platform services:
2020
2121Quickstart
2222----------
23- Add this to your pom.xml file
23+ If you are using Maven, add this to your pom.xml file
2424``` xml
2525<dependency >
2626 <groupId >com.google.gcloud</groupId >
2727 <artifactId >gcloud-java</artifactId >
2828 <version >0.0.10</version >
2929</dependency >
3030```
31+ If you are using Gradle, add this to your dependencies
32+ ``` Groovy
33+ compile 'com.google.gcloud:gcloud-java:jar:0.0.10'
34+ ```
35+ If you are using SBT, add this to your dependencies
36+ ``` Scala
37+ libraryDependencies += " com.google.gcloud" % " gcloud-java" % " 0.0.10"
38+ ```
3139
3240Example Applications
3341--------------------
Original file line number Diff line number Diff line change @@ -12,14 +12,22 @@ This module provides common functionality required by service-specific modules o
1212
1313Quickstart
1414----------
15- Add this to your pom.xml file
15+ If you are using Maven, add this to your pom.xml file
1616``` xml
1717<dependency >
1818 <groupId >com.google.gcloud</groupId >
1919 <artifactId >gcloud-java-core</artifactId >
2020 <version >0.0.10</version >
2121</dependency >
2222```
23+ If you are using Gradle, add this to your dependencies
24+ ``` Groovy
25+ compile 'com.google.gcloud:gcloud-java-core:jar:0.0.10'
26+ ```
27+ If you are using SBT, add this to your dependencies
28+ ``` Scala
29+ libraryDependencies += " com.google.gcloud" % " gcloud-java-core" % " 0.0.10"
30+ ```
2331
2432Java Versions
2533-------------
Original file line number Diff line number Diff line change @@ -15,14 +15,22 @@ Java idiomatic client for [Google Cloud Datastore] (https://cloud.google.com/dat
1515
1616Quickstart
1717----------
18- Add this to your pom.xml file
18+ If you are using Maven, add this to your pom.xml file
1919``` xml
2020<dependency >
2121 <groupId >com.google.gcloud</groupId >
2222 <artifactId >gcloud-java-datastore</artifactId >
2323 <version >0.0.10</version >
2424</dependency >
2525```
26+ If you are using Gradle, add this to your dependencies
27+ ``` Groovy
28+ compile 'com.google.gcloud:gcloud-java-datastore:jar:0.0.10'
29+ ```
30+ If you are using SBT, add this to your dependencies
31+ ``` Scala
32+ libraryDependencies += " com.google.gcloud" % " gcloud-java-datastore" % " 0.0.10"
33+ ```
2634
2735Example Application
2836--------------------
Original file line number Diff line number Diff line change @@ -12,14 +12,22 @@ Examples for gcloud-java (Java idiomatic client for [Google Cloud Platform][clou
1212
1313Quickstart
1414----------
15- Add this to your pom.xml file
15+ If you are using Maven, add this to your pom.xml file
1616``` xml
1717<dependency >
1818 <groupId >com.google.gcloud</groupId >
1919 <artifactId >gcloud-java-examples</artifactId >
2020 <version >0.0.10</version >
2121</dependency >
2222```
23+ If you are using Gradle, add this to your dependencies
24+ ``` Groovy
25+ compile 'com.google.gcloud:gcloud-java-examples:jar:0.0.10'
26+ ```
27+ If you are using SBT, add this to your dependencies
28+ ``` Scala
29+ libraryDependencies += " com.google.gcloud" % " gcloud-java-examples" % " 0.0.10"
30+ ```
2331
2432To run examples from your command line:
2533
Original file line number Diff line number Diff line change @@ -15,14 +15,22 @@ Java idiomatic client for [Google Cloud Storage] (https://cloud.google.com/stora
1515
1616Quickstart
1717----------
18- Add this to your pom.xml file
18+ If you are using Maven, add this to your pom.xml file
1919``` xml
2020<dependency >
2121 <groupId >com.google.gcloud</groupId >
2222 <artifactId >gcloud-java-storage</artifactId >
2323 <version >0.0.10</version >
2424</dependency >
2525```
26+ If you are using Gradle, add this to your dependencies
27+ ``` Groovy
28+ compile 'com.google.gcloud:gcloud-java-storage:jar:0.0.10'
29+ ```
30+ If you are using SBT, add this to your dependencies
31+ ``` Scala
32+ libraryDependencies += " com.google.gcloud" % " gcloud-java-storage" % " 0.0.10"
33+ ```
2634
2735Example Application
2836-------------------
Original file line number Diff line number Diff line change @@ -20,14 +20,22 @@ This client supports the following Google Cloud Platform services:
2020
2121Quickstart
2222----------
23- Add this to your pom.xml file
23+ If you are using Maven, add this to your pom.xml file
2424``` xml
2525<dependency >
2626 <groupId >com.google.gcloud</groupId >
2727 <artifactId >gcloud-java</artifactId >
2828 <version >0.0.10</version >
2929</dependency >
3030```
31+ If you are using Gradle, add this to your dependencies
32+ ``` Groovy
33+ compile 'com.google.gcloud:gcloud-java:jar:0.0.10'
34+ ```
35+ If you are using SBT, add this to your dependencies
36+ ``` Scala
37+ libraryDependencies += " com.google.gcloud" % " gcloud-java" % " 0.0.10"
38+ ```
3139
3240Java Versions
3341-------------
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ if [ "${RELEASED_VERSION##*-}" != "SNAPSHOT" ]; then
1414 for item in ${module_folders[*]}
1515 do
1616 sed -ri " s/<version>[0-9]+\.[0-9]+\.[0-9]+<\/version>/<version>${RELEASED_VERSION} <\/version>/g" ${item} /README.md
17+ sed -ri " s/:[0-9]+\.[0-9]+\.[0-9]+'/:${RELEASED_VERSION} '/g" ${item} /README.md
18+ sed -ri " s/\" [0-9]+\.[0-9]+\.[0-9]+\" /\" ${RELEASED_VERSION} \" /g" ${item} /README.md
1719 done
1820
1921 git add README.md * /README.md
You can’t perform that action at this time.
0 commit comments