-
Notifications
You must be signed in to change notification settings - Fork 1.5k
4052: remove deprecated getSettingsFile usage #4419
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
base: master
Are you sure you want to change the base?
4052: remove deprecated getSettingsFile usage #4419
Conversation
Summary of ChangesHello @wallind, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the Jib Gradle plugin to remove usage of a deprecated Gradle API method for retrieving settings files. The change ensures continued compatibility with newer Gradle versions, specifically addressing recommendations for Gradle 8, by directly resolving and checking for the existence of both Groovy and Kotlin DSL settings files. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request aims to remove the usage of a deprecated Gradle API, getSettingsFile(). While the change successfully removes the deprecated call, it introduces a functional regression by no longer supporting custom settings file locations. My review provides a detailed suggestion on how to correctly address the deprecation using the BuildLayout service, which would also fix the regression. This involves a slightly larger refactoring of the FilesTaskV2 task.
jib-gradle-plugin/src/main/java/com/google/cloud/tools/jib/gradle/skaffold/FilesTaskV2.java
Show resolved
Hide resolved
So Gemini is right, but that's just the nature of the change here that it's a breaking change I think. curious what maintainers think. |
690780e to
a2c8634
Compare
|
@gemini-code-assist see here https://docs.gradle.org/9.0.0/userguide/upgrading_major_version_9.html#removal_of_custom_build_layout_options, supporting |
|
Thank you for the clarification, @wallind. I understand that the removal of support for custom settings file locations via |
See https://docs.gradle.org/current/userguide/upgrading_version_8.html#configuring_custom_build_layout
Thank you for your interest in contributing! For general guidelines, please refer to
the contributing guide.
Please follow the guidelines below before opening an issue or a PR:
Open a PR only if the issue is labeled with "Accepting Contributions", ensure the PR description clearly describes the problem and solution. Note that an open PR without an issues labeled with "Accepting Contributions" will not be accepted.This label doesn't seem to exist?Fixes #4052 🛠️