-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Update guava to 29.0 #7079
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update guava to 29.0 #7079
Conversation
merge from origin
|
Foxed locally, for some reason the PR doesn't have that change. I hate git. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exclusion of JUnit doesn't seem to be working. @dapengzhang0 any ideas?
build.gradle
Outdated
@@ -312,6 +312,9 @@ subprojects { | |||
testCompile libraries.junit, | |||
libraries.mockito, | |||
libraries.truth | |||
testImplementation (libraries.guava_testlib) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be done here. Search for usage of libraries.guava_testlib
and change each of them with exclusion. (census/build.gradle uses libraries.guava_testlib
but actually it should not)
build.gradle
Outdated
@@ -187,7 +187,7 @@ subprojects { | |||
// Jetty ALPN dependencies | |||
jetty_alpn_agent: 'org.mortbay.jetty.alpn:jetty-alpn-agent:2.0.9' | |||
] | |||
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove 8 white spaces
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -18,8 +18,9 @@ dependencies { | |||
testImplementation project(':grpc-context').sourceSets.test.output, | |||
project(':grpc-testing'), | |||
project(':grpc-grpclb'), | |||
libraries.guava_testlib | |||
|
|||
testImplementation (libraries.guava_testlib) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the comma above, otherwise this is considered as appending its return value to the above list, although not breaking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Thanks. You need to merge this as I don't have committer rights. |
@elharo Thank you for your PR. |
@dapengzhang0 fixes #7053