Gradle
Tasks Commands
List, describe, and execute Gradle tasks. Understand task dependencies and configure task execution order.
7 commands
Pro Tips
Use 'gradle tasks --all' to see all tasks including hidden ones.
Run 'gradle help --task <name>' for detailed task information.
Use abbreviations: 'gradle bT' runs 'bootTest' if unambiguous.
Common Mistakes
Task order matters - 'gradle clean build' differs from 'gradle build clean'.
Custom tasks with same name in subprojects may cause conflicts.