Janek 15f29aacc2 gradle: also support settings files (#7014) 5 years ago
..
README.md 6f24f4a18a gradle: add README (#7211) 5 years ago
_gradle e46843685c Improve gradle plugin task parsing (#5230) 7 years ago
_gradlew e46843685c Improve gradle plugin task parsing (#5230) 7 years ago
gradle.plugin.zsh 15f29aacc2 gradle: also support settings files (#7014) 5 years ago

README.md

Gradle Plugin

This plugin adds completions and aliases for Gradle.

To use it, add gradle to the plugins array in your zshrc file:

plugins=(... gradle)

Usage

This plugin creates an alias gradle which is used to determine whether the current working directory has a gradlew file. If gradlew is present it will be used otherwise gradle is used directly. Gradle tasks can be executed directly without regard for whether it is gradle or gradlew

Examples:

gradle test
gradle build

Completion

The completion provided for this plugin caches the parsed tasks into a file named .gradletasknamecache in the current working directory, so you might want to add that to your .gitignore file so that it's not accidentally committed.