Open
Conversation
jtduffy
approved these changes
Apr 14, 2026
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.
Resolves #97
This PR introduces support for Dropwizard v3. For context, Dropwizard 3 made very minor namespace changes to its packages, but the bigger issue was that it dropped support for Javas <11.
In the process of getting the multi-Java build to work, I discovered that the existing gradle version defined for this project (7.5.1) did not behave correctly with toolchains, so I also had to upgrade the gradle version.
Details:
Followup work:
This project adds support for Dropwizard 3. It is not compatible with Dropwizard 4+. Dropwizard 3 still uses the
javax.*namespace, which we must use to define our metadata filter; Dropwizard 4 upgrades to thejakarta.*namespace. A quick follow-on PR for this work could add support for newer versions of Dropwizard, changing our filter to use thejakartanamespace as well.