Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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"

def jaxb_api_version = "2.3.3"
def jsr305_version = "3.0.2"
def everit_json_version = "1.14.2"
Expand Down
2 changes: 1 addition & 1 deletion sdks/java/container/license_scripts/dep_urls_java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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':

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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).

  '2.18.2':

license: "https://raw.githubusercontent.com/FasterXML/jackson-bom/master/LICENSE"
type: "Apache License 2.0"
org.eclipse.jgit:
Expand Down
Loading