Saved Bookmarks
| 1. |
What Are The Core Components Of Gradle Build Script? |
|
Answer» PROJECT and task are the core compoents. GROOVY organizes PROJECTS as a LIST of tasks. To view the list of available projects, use the COMMAND gradle projects, for the tasks list the command is gradle tasks. Project and task are the core compoents. Groovy organizes projects as a list of tasks. To view the list of available projects, use the command gradle projects, for the tasks list the command is gradle tasks. |
|