diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-13 18:09:51 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-13 18:09:51 -0700 |
commit | 306e3e7ea0f2aef2ab9e3a51986c34f7296a3ab2 (patch) | |
tree | 0ae8d737ba90351c940f1a4645490d748a41a43d | |
parent | b28db6b4756e0e81fcacfbcc3a85de81011c81ac (diff) | |
parent | a95473919ab300e4b1a6179e8dca7356a256615d (diff) | |
download | zsh-306e3e7ea0f2aef2ab9e3a51986c34f7296a3ab2.tar.gz zsh-306e3e7ea0f2aef2ab9e3a51986c34f7296a3ab2.tar.bz2 zsh-306e3e7ea0f2aef2ab9e3a51986c34f7296a3ab2.zip |
Merge pull request #4459 from Scuilion/update-gradle-commands
Gradle Plugin: Update Gradle Commands
-rw-r--r-- | plugins/gradle/gradle.plugin.zsh | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/plugins/gradle/gradle.plugin.zsh b/plugins/gradle/gradle.plugin.zsh index 97941756d..661c29d5b 100644 --- a/plugins/gradle/gradle.plugin.zsh +++ b/plugins/gradle/gradle.plugin.zsh @@ -1,6 +1,6 @@ #!zsh ############################################################################## -# A descriptive listing of core Gradle commands +# A descriptive listing of core Gradle commands ############################################################################ function _gradle_core_commands() { local ret=1 state @@ -32,14 +32,22 @@ function _gradle_arguments() { '--stop[Stop the Gradle daemon]' \ '--daemon[Use the Gradle daemon]' \ '--no-daemon[Do not use the Gradle daemon]' \ - '--no-opt[Do not perform any task optimization]' \ + '--rerun-task [Specifies that any task optimization is ignored.]' \ '-i[Log at the info level]' \ '-m[Dry run]' \ '-P[Set a project property]' \ + '-p[Specifies the start directory]' \ '--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]' \ + '-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.]' \ '*::command:->command' \ && return 0 } |