Added support for Gradle's "Configuration Avoidance API". It eases the burden on Gradle configuration step by assuring that a task configuration will only be executed prior to the task execution itself. Thus, if a task isn't predicted to be executed, its configuration won't be loaded.
Description
Added support for Gradle's "Configuration Avoidance API". It eases the burden on Gradle configuration step by assuring that a task configuration will only be executed prior to the task execution itself. Thus, if a task isn't predicted to be executed, its configuration won't be loaded.
More details on https://docs.gradle.org/current/userguide/task_configuration_avoidance.html
Changes