This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
deps: update dependency com.google.guava:guava-bom to v31 #498
Merged
gcf-merge-on-green
merged 10 commits into
googleapis:main
from
suztomo:first_party_deps
Oct 18, 2021
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
58baa1f
deps: setting the latest versions in first-party deps
suztomo 5cf4863
deps: using the newer jackson
suztomo eff6c1f
deps: commons-protos 2.6.0
suztomo 1476d03
deps: trying checker-qual in third-party dependencies
suztomo ddd5120
deps: trying javax.annotation-api as compile scope
suztomo 0cb69f1
deps: testing compile scope or not
suztomo f6aab55
deps: explicitly declaring compile scope for javax.annotation-api
suztomo 3e5ffe0
deps: gax 2.6.0
suztomo f02b00d
deps: update gax and core
Neenu1995 2059531
deps: update api-client
Neenu1995 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,10 +64,12 @@ | |
<opencensus.version>0.28.0</opencensus.version> | ||
<findbugs.version>3.0.2</findbugs.version> | ||
<errorprone.version>2.9.0</errorprone.version> | ||
<jackson.version>2.12.5</jackson.version> | ||
<jackson.version>2.13.0</jackson.version> | ||
<codec.version>1.15</codec.version> | ||
<httpcomponents.httpcore.version>4.4.14</httpcomponents.httpcore.version> | ||
<httpcomponents.httpclient.version>4.5.13</httpcomponents.httpclient.version> | ||
<!-- ensure checker-qual version matches what Guava uses --> | ||
<checker-qual.version>3.12.0</checker-qual.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. @Neenu1995 Declaring checker-qual seems to resolve the release-dependency problem between java-storage, java-datacatalog, and java-bigquery. |
||
</properties> | ||
|
||
<dependencyManagement> | ||
|
@@ -96,6 +98,7 @@ | |
<groupId>javax.annotation</groupId> | ||
<artifactId>javax.annotation-api</artifactId> | ||
<version>${javax.annotations.version}</version> | ||
<scope>compile</scope> | ||
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. |
||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.mojo</groupId> | ||
|
@@ -166,6 +169,11 @@ | |
<artifactId>opencensus-impl-core</artifactId> | ||
<version>${opencensus.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.checkerframework</groupId> | ||
<artifactId>checker-qual</artifactId> | ||
<version>${checker-qual.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Thank you.