gradle
Installation
SKILL.md
Gradle
Intent Router
| Request | Reference | Load When |
|---|---|---|
| Install tool, first-time setup, Gradle wrapper | references/install-and-setup.md |
Gradle needs to be installed or the ./gradlew wrapper configured |
| build.gradle structure, dependencies, settings | references/build-scripts.md |
Work involves editing build scripts or adding dependencies |
| CLI commands, build workflows | references/command-cookbook.md |
Specific ./gradlew commands or flags are needed |
| Task definition, plugins, publishing | references/tasks-and-plugins.md |
Questions about custom tasks or plugin configuration arise |
Quick Start
# Build project (compile + test + assemble)
./gradlew build
# Run tests only
./gradlew test