Using the TaskContainer.create method to create a task will spend unnecessary time when running a Gradle build. You should use the TaskContainer.register method. For more information, see the Gradle documentation.
Steps to reproduce:
Simply apply and configure the plugin. Any UploadDistributionTask, AddTestersTask, and RemoveTestersTask tasks will be created and configured during Gradle's configuration phase.
BTW: Where do I find the source code of the Gradle plugin? It doesn't seem to live in this repository.
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
Using the
TaskContainer.create
method to create a task will spend unnecessary time when running a Gradle build. You should use theTaskContainer.register
method. For more information, see the Gradle documentation.Steps to reproduce:
Simply apply and configure the plugin. Any
UploadDistributionTask
,AddTestersTask
, andRemoveTestersTask
tasks will be created and configured during Gradle's configuration phase.BTW: Where do I find the source code of the Gradle plugin? It doesn't seem to live in this repository.