gemini-code-assist[bot] commented on code in PR #37969:
URL: https://github.com/apache/beam/pull/37969#discussion_r3250773374
##########
buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy:
##########
@@ -623,7 +623,7 @@ class BeamModulePlugin implements Plugin<Project> {
def httpclient_version = "4.5.13"
def httpcore_version = "4.4.14"
def iceberg_bqms_catalog_version = "1.6.1-1.0.1"
- def jackson_version = "2.15.4"
+ def jackson_version = "2.18.6"
Review Comment:

The version `2.18.6` for Jackson does not appear to exist in Maven Central.
The latest stable release in the 2.18.x series is `2.18.2`. Using a
non-existent version will cause the build to fail. Additionally, the
`CHANGES.md` file should be updated to reflect this dependency change as noted
in the pull request checklist.
```
def jackson_version = "2.18.2"
```
##########
sdks/java/container/license_scripts/dep_urls_java.yaml:
##########
@@ -58,7 +58,7 @@ xz:
'1.5': # The original repo is down. This license is taken from
https://tukaani.org/xz/java.html.
license: "file://{}/xz/COPYING"
jackson-bom:
- '2.15.4':
+ '2.18.6':
Review Comment:

The version `2.18.6` does not exist. This should be updated to match the
version used in the build configuration (e.g., `2.18.2`).
```yaml
'2.18.2':
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]