You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
On Project.afterEvaluate, the plugin is computing and downloading the dependencies at configuration time.
swagger-gradle-plugin/plugin/src/main/groovy/com/benjaminsproule/swagger/gradleplugin/GradleSwaggerPlugin.groovy
Line 65 in 1fde268
This slows down the start up of the gradle target task and prevents gradle from performing other tasks in parallel.
Since
Configuration.files()
is eager, even with the changes done on #139 it still downloads the dependencies at configuration time.If you can replace
.files()
with its lazy counterpart.fileCollection()
.The text was updated successfully, but these errors were encountered: