-
Notifications
You must be signed in to change notification settings - Fork 53
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
deps: normalize dependencies #2574
Changes from all commits
a543370
333f40a
adfd96d
6f9be82
b4dc183
7da86a2
61c6e6a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,10 +30,12 @@ | |
<google.auth.version>1.23.0</google.auth.version> | ||
<google.http-client.version>1.44.1</google.http-client.version> | ||
<gson.version>2.10.1</gson.version> | ||
<guava.version>32.1.3-jre</guava.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you check the release note for Guava 33 for any breaking changes? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I just did. I did not find any breaking changes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you |
||
<guava.version>33.1.0-jre</guava.version> | ||
<protobuf.version>3.25.2</protobuf.version> | ||
<opentelemetry.version>1.35.0</opentelemetry.version> | ||
<maven.compiler.release>8</maven.compiler.release> | ||
<errorprone.version>2.26.1</errorprone.version> | ||
<j2objc-annotations.version>3.0.0</j2objc-annotations.version> | ||
</properties> | ||
|
||
<developers> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
<!-- ensure checker-qual version matches what Guava uses --> | ||
<checker-qual.version>3.42.0</checker-qual.version> | ||
<perfmark-api.version>0.27.0</perfmark-api.version> | ||
<j2objc-annotations.version>2.8</j2objc-annotations.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shall we keep this as old version for now, to reduce uncertainty? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was necessary as part of updating
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK. Thank you for checking. |
||
<j2objc-annotations.version>3.0.0</j2objc-annotations.version> | ||
<opentelemetry.version>1.36.0</opentelemetry.version> | ||
<flogger.version>0.8</flogger.version> | ||
<arrow.version>15.0.1</arrow.version> | ||
|
@@ -184,4 +184,4 @@ | |
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> | ||
</project> |
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.
@suztomo We have to declare this dependency here and the version in
gapic-generator-java-pom-parent
, to resolve a Maven enforcer failure. In addition, it is already declared in third-party-dependencies, do you have a good way to declare this dependency in a centralized place?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.
Use variables. Follow gRPC's version.
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.
We are using variables for
errorprone
andj2objc
in