Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
docs: fix artifact name in README (#6)
Browse files Browse the repository at this point in the history
* docs: fix artifact name in README

* fix: dependency declaration
  • Loading branch information
chingor13 committed Oct 17, 2019
1 parent 5de1123 commit 5359486
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -13,22 +13,22 @@ Java idiomatic client for [Cloud Build][api-reference].
## Quickstart

[//]: # ({x-version-update-start:cloudbuild:released})
[//]: # ({x-version-update-start:google-cloud-cloudbuild:released})
If you are using Maven, add this to your pom.xml file
```xml
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>cloudbuild</artifactId>
<artifactId>google-cloud-cloudbuild</artifactId>
<version>0.0.1</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:cloudbuild:0.0.1'
compile 'com.google.cloud:google-cloud-cloudbuild:0.0.1'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "cloudbuild" % "0.0.1"
libraryDependencies += "com.google.cloud" % "google-cloud-cloudbuild" % "0.0.1"
```
[//]: # ({x-version-update-end})

Expand All @@ -55,8 +55,8 @@ project set up. You will also need to set up the local development environment b

### Installation and setup

You'll need to obtain the `cloudbuild` library. See the [Quickstart](#quickstart) section
to add `cloudbuild` as a dependency in your code.
You'll need to obtain the `google-cloud-cloudbuild` library. See the [Quickstart](#quickstart) section
to add `google-cloud-cloudbuild` as a dependency in your code.

## Troubleshooting

Expand Down
4 changes: 4 additions & 0 deletions grpc-google-cloud-cloudbuild-v1/pom.xml
Expand Up @@ -33,6 +33,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-cloudbuild-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down

0 comments on commit 5359486

Please sign in to comment.