-
Notifications
You must be signed in to change notification settings - Fork 96
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
removeContainers = false is broken when using gradle 8.x #405
Comments
I got it working again when doing
however, this syntax is not recommended in gradle 8 |
Hello, what do you please mean by |
I figured out the correct syntax a while ago and I forgot to update here. If I have the following in gradle.properties
and If I have the following in build.gradle
the above will not work, removeContainers is calling the getter and the "=" is not mutating the removeContainers value. the correct syntax when using gradle 8 should be the following:
removing the "=" will call the setter |
That's interesting. Here you can see that the |
I get what you mean. I have tried that and set break point to debug. but it didn't work. This is actually broken for more than a year and I used to use
to get around the issue. And I just figure out a cleaner way to override the value using |
it seems that the value is not override
The text was updated successfully, but these errors were encountered: