You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gradle-completion.bash
+76-80Lines changed: 76 additions & 80 deletions
Original file line number
Diff line number
Diff line change
@@ -79,63 +79,61 @@ __gradle-long-options() {
79
79
local cur
80
80
_get_comp_words_by_ref -n : cur
81
81
82
-
local args="\
83
-
--build-cache - Enables the Gradle build cache. Gradle will try to reuse outputs from previous builds.
84
-
--configuration-cache - Enables the configuration cache. Gradle will try to reuse the build configuration from previous builds.
85
-
--configuration-cache-problems - Configures how the configuration cache handles problems (fail or warn). Defaults to fail.
86
-
--configure-on-demand - Configure necessary projects only. Gradle will attempt to reduce configuration time for large multi-project builds. [incubating]
87
-
--console - Specifies which type of console output to generate. Values are 'plain', 'colored', 'auto' (default), 'rich' or 'verbose'.
88
-
--continue - Continue task execution after a task failure.
89
-
--continuous - Enables continuous build. Gradle does not exit and will re-execute tasks when task file inputs change.
90
-
--daemon - Uses the Gradle daemon to run the build. Starts the daemon if not running.
91
-
--debug - Log in debug mode (includes normal stacktrace).
92
-
--dependency-verification - Configures the dependency verification mode. Values are 'strict', 'lenient' or 'off'.
93
-
--dry-run - Run the builds with all task actions disabled.
94
-
--exclude-task - Specify a task to be excluded from execution.
95
-
--export-keys - Exports the public keys used for dependency verification.
96
-
--foreground - Starts the Gradle daemon in the foreground.
97
-
--full-stacktrace - Print out the full (very verbose) stacktrace for all exceptions.
98
-
--gradle-user-home - Specifies the Gradle user home directory. Defaults to ~/.gradle
99
-
--help - Shows a help message.
100
-
--include-build - Include the specified build in the composite.
101
-
--info - Set log level to info.
102
-
--init-script - Specify an initialization script.
103
-
--max-workers - Configure the number of concurrent workers Gradle is allowed to use.
104
-
--no-build-cache - Disables the Gradle build cache.
105
-
--no-configuration-cache - Disables the configuration cache.
106
-
--no-configure-on-demand - Disables the use of configuration on demand. [incubating]
107
-
--no-continue - Stop task execution after a task failure.
108
-
--no-daemon - Do not use the Gradle daemon to run the build. Useful occasionally if you have configured Gradle to always run with the daemon by default.
109
-
--no-parallel - Disables parallel execution to build projects.
110
-
--no-problems-report - (Experimental) disables HTML problems report
111
-
--no-rebuild - Do not rebuild project dependencies.
112
-
--no-scan - Disables the creation of a Build Scan.
113
-
--no-watch-fs - Disables watching the file system.
114
-
--offline - Execute the build without accessing network resources.
115
-
--parallel - Build projects in parallel. Gradle will attempt to determine the optimal number of executor threads to use.
116
-
--priority - Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'
117
-
--problems-report - (Experimental) enables HTML problems report
118
-
--profile - Profile build execution time and generates a report in the <build_dir>/reports/profile directory.
119
-
--project-cache-dir - Specify the project-specific cache directory. Defaults to .gradle in the root project directory.
120
-
--project-dir - Specifies the start directory for Gradle. Defaults to current directory.
121
-
--property-upgrade-report - (Experimental) Runs build with experimental property upgrade report.
122
-
--quiet - Log errors only.
123
-
--refresh-dependencies - Refresh the state of dependencies.
124
-
--refresh-keys - Refresh the public keys used for dependency verification.
--scan - Generate a Build Scan (powered by Develocity).
127
-
--stacktrace - Print out the stacktrace for all exceptions.
128
-
--status - Shows status of running and recently stopped Gradle daemon(s).
129
-
--stop - Stops the Gradle daemon if it is running.
130
-
--task-graph - (Experimental) Print task graph instead of executing tasks.
131
-
--update-locks - Perform a partial update of the dependency lock, letting passed in module notations change version. [incubating]
132
-
--version - Shows the version info.
133
-
--warn - Set log level to warn.
134
-
--warning-mode - Specifies which mode of warnings to generate. Values are 'all', 'fail', 'summary'(default) or 'none'
135
-
--watch-fs - Enables watching the file system for changes, allowing data about the file system to be re-used for the next build.
136
-
--write-locks - Persists dependency resolution for locked configurations, ignoring existing locking information if it exists
137
-
--write-verification-metadata - Generates checksums for dependencies used in the project (comma-separated list)\
138
-
"
82
+
local args="--build-cache - Enables the Gradle build cache. Gradle will try to reuse outputs from previous builds.
83
+
--configuration-cache - Enables the configuration cache. Gradle will try to reuse the build configuration from previous builds.
84
+
--configuration-cache-problems - Configures how the configuration cache handles problems (fail or warn). Defaults to fail.
85
+
--configure-on-demand - Configure necessary projects only. Gradle will attempt to reduce configuration time for large multi-project builds. [incubating]
86
+
--console - Specifies which type of console output to generate. Values are 'plain', 'colored', 'auto' (default), 'rich' or 'verbose'.
87
+
--continue - Continue task execution after a task failure.
88
+
--continuous - Enables continuous build. Gradle does not exit and will re-execute tasks when task file inputs change.
89
+
--daemon - Uses the Gradle daemon to run the build. Starts the daemon if not running.
90
+
--debug - Log in debug mode (includes normal stacktrace).
91
+
--dependency-verification - Configures the dependency verification mode. Values are 'strict', 'lenient' or 'off'.
92
+
--dry-run - Run the builds with all task actions disabled.
93
+
--exclude-task - Specify a task to be excluded from execution.
94
+
--export-keys - Exports the public keys used for dependency verification.
95
+
--foreground - Starts the Gradle daemon in the foreground.
96
+
--full-stacktrace - Print out the full (very verbose) stacktrace for all exceptions.
97
+
--gradle-user-home - Specifies the Gradle user home directory. Defaults to ~/.gradle
98
+
--help - Shows a help message.
99
+
--include-build - Include the specified build in the composite.
100
+
--info - Set log level to info.
101
+
--init-script - Specify an initialization script.
102
+
--max-workers - Configure the number of concurrent workers Gradle is allowed to use.
103
+
--no-build-cache - Disables the Gradle build cache.
104
+
--no-configuration-cache - Disables the configuration cache.
105
+
--no-configure-on-demand - Disables the use of configuration on demand. [incubating]
106
+
--no-continue - Stop task execution after a task failure.
107
+
--no-daemon - Do not use the Gradle daemon to run the build. Useful occasionally if you have configured Gradle to always run with the daemon by default.
108
+
--no-parallel - Disables parallel execution to build projects.
109
+
--no-problems-report - (Experimental) disables HTML problems report
110
+
--no-rebuild - Do not rebuild project dependencies.
111
+
--no-scan - Disables the creation of a Build Scan.
112
+
--no-watch-fs - Disables watching the file system.
113
+
--offline - Execute the build without accessing network resources.
114
+
--parallel - Build projects in parallel. Gradle will attempt to determine the optimal number of executor threads to use.
115
+
--priority - Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'
116
+
--problems-report - (Experimental) enables HTML problems report
117
+
--profile - Profile build execution time and generates a report in the <build_dir>/reports/profile directory.
118
+
--project-cache-dir - Specify the project-specific cache directory. Defaults to .gradle in the root project directory.
119
+
--project-dir - Specifies the start directory for Gradle. Defaults to current directory.
120
+
--property-upgrade-report - (Experimental) Runs build with experimental property upgrade report.
121
+
--quiet - Log errors only.
122
+
--refresh-dependencies - Refresh the state of dependencies.
123
+
--refresh-keys - Refresh the public keys used for dependency verification.
0 commit comments