We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
printVersion task should be registered using Gradle configuration avoidance API, there is no reason to eagerly create and configure it.
Gradle docs: https://docs.gradle.org/current/userguide/task_configuration_avoidance.html#sec:how_do_i_defer_creation
Effective task configuration avoidance requires build authors to change instances of TaskContainer.create(java.lang.String) to TaskContainer.register(java.lang.String).
Any chance that it could be migrated?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
printVersion task should be registered using Gradle configuration avoidance API, there is no reason to eagerly create and configure it.
Gradle docs: https://docs.gradle.org/current/userguide/task_configuration_avoidance.html#sec:how_do_i_defer_creation
Any chance that it could be migrated?
The text was updated successfully, but these errors were encountered: