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

Commit f0c638a

Browse files
authored
deps: update dependency io.grpc:grpc-bom to v1.41.0 and com.google.guava:guava to v31 (#244)
* deps: update dependency io.grpc:grpc-bom to v1.41.0 and com.google.guava:guava to v31 * chore: exclude errorprone-annotation from dependencies check * chore: exclude depndencies.sh
1 parent 0308146 commit f0c638a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.kokoro/dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ function completenessCheck() {
6868
# This is stripped from the output as it is not present in the flattened pom.
6969
# Only dependencies with 'compile' or 'runtime' scope are included from original dependency list.
7070
msg "Generating dependency list using original pom..."
71-
mvn dependency:list -f pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e 's/ --.*//' >.org-list.txt
71+
mvn dependency:list -f pom.xml -DexcludeArtifactIds=error_prone_annotations -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e 's/ --.*//' >.org-list.txt
7272

7373
# Output dep list generated using the flattened pom (only 'compile' and 'runtime' scopes)
7474
msg "Generating dependency list using flattened pom..."
75-
mvn dependency:list -f .flattened-pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
75+
mvn dependency:list -f .flattened-pom.xml -DexcludeArtifactIds=error_prone_annotations -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
7676

7777
# Compare two dependency lists
7878
msg "Comparing dependency lists..."

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
<site.installationModule>google-iam-parent</site.installationModule>
6666
<protobuf.version>3.18.1</protobuf.version>
6767
<junit.version>4.13.2</junit.version>
68-
<grpc.version>1.38.1</grpc.version>
69-
<guava.version>30.1-android</guava.version>
68+
<grpc.version>1.41.0</grpc.version>
69+
<guava.version>31.0.1-android</guava.version>
7070
</properties>
7171

7272
<dependencyManagement>

synth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,5 @@ def build_grpc(target):
106106
'README.md',
107107
'samples/*',
108108
'.github/workflows/samples.yaml',
109+
'.kokoro/dependencies.sh',
109110
])

0 commit comments

Comments
 (0)