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

Commit d6d6905

Browse files
feat: Remove use of deprecated gradle command in java README (#1196) (#556)
1 parent 026d671 commit d6d6905

File tree

4 files changed

+4
-16
lines changed

4 files changed

+4
-16
lines changed

.github/.OwlBot.lock.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image: gcr.io/repo-automation-bots/owlbot-java:latest
3-
digest: sha256:8e27e5a7297b40eca3ab46ae67f10c575813a85c673839030aa161d0818f3a24
3+
digest: sha256:8a486672c9a4ae5e7d55b9ac252ce1741582b8c2ceeda40efa32376325809928

.github/release-trigger.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
enabled: true

.github/workflows/ci.yaml

-13
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,6 @@ jobs:
4242
java-version: ${{matrix.java}}
4343
- run: java -version
4444
- run: .kokoro/dependencies.sh
45-
linkage-monitor:
46-
runs-on: ubuntu-latest
47-
steps:
48-
- uses: actions/checkout@v2
49-
- uses: actions/setup-java@v1
50-
with:
51-
java-version: 8
52-
- run: java -version
53-
- name: Install artifacts to local Maven repository
54-
run: .kokoro/build.sh
55-
shell: bash
56-
- name: Validate any conflicts with regard to com.google.cloud:libraries-bom (latest release)
57-
uses: GoogleCloudPlatform/cloud-opensource-java/linkage-monitor@v1-linkagemonitor
5845
lint:
5946
runs-on: ubuntu-latest
6047
steps:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ If you are using Gradle 5.x or later, add this to your dependencies
5151
```Groovy
5252
implementation platform('com.google.cloud:libraries-bom:22.0.0')
5353
54-
compile 'com.google.cloud:google-cloud-container'
54+
implementation 'com.google.cloud:google-cloud-container'
5555
```
5656
If you are using Gradle without BOM, add this to your dependencies
5757

5858
```Groovy
59-
compile 'com.google.cloud:google-cloud-container:2.0.2'
59+
implementation 'com.google.cloud:google-cloud-container:2.0.2'
6060
```
6161

6262
If you are using SBT, add this to your dependencies

0 commit comments

Comments
 (0)