Skip to content

Commit bfc6efb

Browse files
fix: [cloudbuild] remove empty v2.CloudBuild definition (#9077)
* chore: configure CloudBuild V1 for PHP PiperOrigin-RevId: 508723510 Source-Link: googleapis/googleapis@a3748ac Source-Link: https://github.com/googleapis/googleapis-gen/commit/d0365debed4331c15ddfa6ef2904d7da0cdee732 Copy-Tag: eyJwIjoiamF2YS1jbG91ZGJ1aWxkLy5Pd2xCb3QueWFtbCIsImgiOiJkMDM2NWRlYmVkNDMzMWMxNWRkZmE2ZWYyOTA0ZDdkYTBjZGVlNzMyIn0= feat: Client libraries for Cloud Build Repositories (preview) PiperOrigin-RevId: 506886904 Source-Link: googleapis/googleapis@88181f5 Source-Link: https://github.com/googleapis/googleapis-gen/commit/a534d6f4a4347faaee521e130e9608e9988f2047 Copy-Tag: eyJwIjoiamF2YS1jbG91ZGJ1aWxkLy5Pd2xCb3QueWFtbCIsImgiOiJhNTM0ZDZmNGE0MzQ3ZmFhZWU1MjFlMTMwZTk2MDhlOTk4OGYyMDQ3In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: remove empty v2.CloudBuild definition PiperOrigin-RevId: 509865389 Source-Link: googleapis/googleapis@573e7eb Source-Link: https://github.com/googleapis/googleapis-gen/commit/4c03ea45a7a2c247d9f5dd3b7fadbeece4b88e7d Copy-Tag: eyJwIjoiamF2YS1jbG91ZGJ1aWxkLy5Pd2xCb3QueWFtbCIsImgiOiI0YzAzZWE0NWE3YTJjMjQ3ZDlmNWRkM2I3ZmFkYmVlY2U0Yjg4ZTdkIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * deps: add missing test scope dependencies to google-cloud-build * chore: remove consolidated build and profiles sections from generated pom files --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Emily Wang <[email protected]>
1 parent 2c7e044 commit bfc6efb

File tree

165 files changed

+54105
-36
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+54105
-36
lines changed

java-cloudbuild/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-build</artifactId>
22-
<version>3.10.0</version>
22+
<version>3.12.0</version>
2323
</dependency>
2424
```
2525

2626
If you are using Gradle without BOM, add this to your dependencies:
2727

2828
```Groovy
29-
implementation 'com.google.cloud:google-cloud-build:3.10.0'
29+
implementation 'com.google.cloud:google-cloud-build:3.12.0'
3030
```
3131

3232
If you are using SBT, add this to your dependencies:
3333

3434
```Scala
35-
libraryDependencies += "com.google.cloud" % "google-cloud-build" % "3.10.0"
35+
libraryDependencies += "com.google.cloud" % "google-cloud-build" % "3.12.0"
3636
```
3737

3838
## Authentication

java-cloudbuild/google-cloud-build-bom/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,21 @@
3030
<artifactId>grpc-google-cloud-build-v1</artifactId>
3131
<version>3.13.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-build-v1:current} -->
3232
</dependency>
33+
<dependency>
34+
<groupId>com.google.api.grpc</groupId>
35+
<artifactId>grpc-google-cloud-build-v2</artifactId>
36+
<version>3.13.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-build-v2:current} -->
37+
</dependency>
3338
<dependency>
3439
<groupId>com.google.api.grpc</groupId>
3540
<artifactId>proto-google-cloud-build-v1</artifactId>
3641
<version>3.13.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-build-v1:current} -->
3742
</dependency>
43+
<dependency>
44+
<groupId>com.google.api.grpc</groupId>
45+
<artifactId>proto-google-cloud-build-v2</artifactId>
46+
<version>3.13.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-build-v2:current} -->
47+
</dependency>
3848
</dependencies>
3949
</dependencyManagement>
4050
</project>

java-cloudbuild/google-cloud-build/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
<groupId>com.google.api.grpc</groupId>
4343
<artifactId>proto-google-common-protos</artifactId>
4444
</dependency>
45+
<dependency>
46+
<groupId>com.google.api.grpc</groupId>
47+
<artifactId>proto-google-cloud-build-v2</artifactId>
48+
</dependency>
4549
<dependency>
4650
<groupId>com.google.api.grpc</groupId>
4751
<artifactId>proto-google-cloud-build-v1</artifactId>
@@ -73,11 +77,26 @@
7377
<artifactId>junit</artifactId>
7478
<scope>test</scope>
7579
</dependency>
80+
<dependency>
81+
<groupId>com.google.api.grpc</groupId>
82+
<artifactId>grpc-google-iam-v1</artifactId>
83+
<scope>test</scope>
84+
</dependency>
85+
<dependency>
86+
<groupId>com.google.api.grpc</groupId>
87+
<artifactId>grpc-google-common-protos</artifactId>
88+
<scope>test</scope>
89+
</dependency>
7690
<dependency>
7791
<groupId>com.google.api.grpc</groupId>
7892
<artifactId>grpc-google-cloud-build-v1</artifactId>
7993
<scope>test</scope>
8094
</dependency>
95+
<dependency>
96+
<groupId>com.google.api.grpc</groupId>
97+
<artifactId>grpc-google-cloud-build-v2</artifactId>
98+
<scope>test</scope>
99+
</dependency>
81100
<!-- Need testing utility classes for generated gRPC clients tests -->
82101
<dependency>
83102
<groupId>com.google.api</groupId>

0 commit comments

Comments
 (0)