Blame view
plugins/gradle/gradle.plugin.zsh
3.38 KB
|
093a6c34b
|
1 |
############################################################################## |
|
ed37aae5b
|
2 |
# A descriptive listing of core Gradle commands |
|
093a6c34b
|
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
############################################################################
function _gradle_core_commands() {
local ret=1 state
_arguments ':subcommand:->subcommand' && ret=0
case $state in
subcommand)
subcommands=(
"properties:Display all project properties"
"tasks:Calculate and display all tasks"
"dependencies:Calculate and display all dependencies"
"projects:Discover and display all sub-projects"
"build:Build the project"
"help:Display help"
)
_describe -t subcommands 'gradle subcommands' subcommands && ret=0
esac
return ret
}
function _gradle_arguments() {
_arguments -C \
'-a[Do not rebuild project dependencies]' \
'-h[Help]' \
'-D[System property]' \
'-d[Log at the debug level]' \
'--gui[Launches the Gradle GUI app]' \
'--stop[Stop the Gradle daemon]' \
'--daemon[Use the Gradle daemon]' \
'--no-daemon[Do not use the Gradle daemon]' \
|
|
ed37aae5b
|
34 |
'--rerun-task [Specifies that any task optimization is ignored.]' \ |
|
093a6c34b
|
35 36 37 |
'-i[Log at the info level]' \
'-m[Dry run]' \
'-P[Set a project property]' \
|
|
ed37aae5b
|
38 |
'-p[Specifies the start directory]' \ |
|
093a6c34b
|
39 40 41 42 |
'--profile[Profile the build time]' \
'-q[Log at the quiet level (only show errors)]' \
'-v[Print the Gradle version info]' \
'-x[Specify a task to be excluded]' \
|
|
ed37aae5b
|
43 44 45 46 47 48 49 |
'-b[Specifies the build file.]' \
'-c[Specifies the settings file.]' \
'--continue[Continues task execution after a task failure.]' \
'-g[Specifies the Gradle user home directory.]' \
'-I[Specifies an initialization script.]' \
'--refresh-dependencies[Refresh the state of dependencies.]' \
'-u[Don''t search in parent directories for a settings.gradle file.]' \
|
|
093a6c34b
|
50 51 52 53 54 55 |
'*::command:->command' \
&& return 0
}
##############################################################################
|
|
f4c442e7d
|
56 57 |
# Examine the build.gradle file to see if its timestamp has changed; # and if so, regenerate the .gradle_tasks cache file |
|
093a6c34b
|
58 59 |
############################################################################
_gradle_does_task_list_need_generating () {
|
|
f4c442e7d
|
60 |
[[ ! -f .gradletasknamecache ]] || [[ build.gradle -nt .gradletasknamecache ]] |
|
093a6c34b
|
61 62 63 64 65 66 67 |
}
##############################################################################
# Discover the gradle tasks by running "gradle tasks --all"
############################################################################
_gradle_tasks () {
|
|
f4c442e7d
|
68 |
if [[ -f build.gradle ]]; then |
|
093a6c34b
|
69 70 |
_gradle_arguments
if _gradle_does_task_list_need_generating; then
|
|
f4c442e7d
|
71 |
gradle tasks --all | awk '/[a-zA-Z0-9:-]* - / {print $1}' > .gradletasknamecache
|
|
093a6c34b
|
72 |
fi |
|
f4c442e7d
|
73 |
compadd -X "==== Gradle Tasks ====" $(cat .gradletasknamecache) |
|
093a6c34b
|
74 75 76 77 |
fi
}
_gradlew_tasks () {
|
|
f4c442e7d
|
78 |
if [[ -f build.gradle ]]; then |
|
093a6c34b
|
79 80 |
_gradle_arguments
if _gradle_does_task_list_need_generating; then
|
|
f4c442e7d
|
81 |
./gradlew tasks --all | awk '/[a-zA-Z0-9:-]* - / {print $1}' > .gradletasknamecache
|
|
093a6c34b
|
82 |
fi |
|
f4c442e7d
|
83 |
compadd -X "==== Gradlew Tasks ====" $(cat .gradletasknamecache) |
|
093a6c34b
|
84 85 86 87 88 89 90 91 92 |
fi } ############################################################################## # Register the completions against the gradle and gradlew commands ############################################################################ compdef _gradle_tasks gradle compdef _gradlew_tasks gradlew |