Update Docker Maven Plugin for Docker v29+ compatibility#12146
Merged
pdurbin merged 1 commit intoIQSS:developfrom Feb 5, 2026
Merged
Update Docker Maven Plugin for Docker v29+ compatibility#12146pdurbin merged 1 commit intoIQSS:developfrom
pdurbin merged 1 commit intoIQSS:developfrom
Conversation
To ensure compatibility with Docker API v29+, we need to upgrade the plugin.
pdurbin
approved these changes
Feb 5, 2026
Member
pdurbin
left a comment
There was a problem hiding this comment.
As discussed at #containers > DMP & Docker 29+ this makes sense and looks good. Merging!
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does / why we need it:
To ensure compatibility with Docker v29+, we need to upgrade the plugin.
Multiple folks were starting to see this error message when trying to build or run images via Maven:
[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.46.0:run (default-cli) on project dataverse: Execution default-cli of goal io.fabric8:docker-maven-plugin:0.46.0:run failed: Cannot invoke "com.google.gson.JsonElement.isJsonNull()" because the return value of "com.google.gson.JsonObject.get(String)" is null -> [Help 1]This is fixed as of release 0.48.0: https://github.com/fabric8io/docker-maven-plugin/releases/tag/v0.48.0
Using
-Dfabric8-dmp.version=0.48.0has shown the issue is mitigated and builds went smoothly, thus making this permanent with this PR.