-
Notifications
You must be signed in to change notification settings - Fork 48
Upgrading to java17 as minimum #936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
haroon-sheikh
commented
Oct 31, 2025
haroon-sheikh
commented
Nov 2, 2025
71a4d1a to
58d9617
Compare
Signed-off-by: Haroon Sheikh <haroon.sheikh@sky.uk>
58d9617 to
75beb2b
Compare
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
chadlwilson
approved these changes
Nov 3, 2025
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
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.
This pull request updates the Java plugin for Gauge to version 0.14.0, drops support for Java 11, and modernizes the codebase by leveraging newer Java features and improving code quality. It also updates dependencies, notably upgrading JUnit to version 6, and makes various refactoring and cleanup changes for consistency and maintainability.
Build and Compatibility Updates:
.github/workflows/tests.yml,pom.xml)0.14.0inpom.xmlandjava.json.5.14.0to6.0.0.Code Modernization and Refactoring:
Paths.get()withPath.of()for file path handling throughout the codebase, aligning with modern Java best practices.getDeclaredConstructor().newInstance()instead of the deprecatednewInstance(). (DefaultClassInitializer.java)instanceof ... varand simplifying lambda expressions.Minor Cleanups and Consistency Improvements:
These changes collectively modernize the codebase, improve compatibility with recent Java versions, and enhance maintainability.