a53fc60260
Add CONTRIBUTING.md |
||
---|---|---|
.github | ||
.vscode | ||
images | ||
resources | ||
src | ||
test-fixtures | ||
.gitignore | ||
.npmrc | ||
.nvmrc | ||
.vscodeignore | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
LICENSE.md | ||
README.md | ||
icon.png | ||
package-lock.json | ||
package.json | ||
tsconfig.json |
README.md
vscode-gradle
Run gradle tasks in VS Code.
Features
- Run gradle tasks as VS Code tasks
- List & run gradle tasks in the Explorer
- Multi-root workspace folders supported
- Default Groovy/Kotlin & custom build files supported
- Multi-project builds supported
Note: Local gradle wrapper executables must exist at the root of the workspace folders (either
./gradlew
or.\gradlew.bat
, depending on your environment).
Extension Settings
This extension contributes the following settings:
gradle.autoDetect
: Automatically detect gradle tasksgradle.tasksArgs
: Custom gradle tasks argumentsgradle.enableTasksExplorer
: Enable an explorer view for gradle tasksgradle.customBuildFile
: Custom gradle build filenamegradle.explorerNestedSubProjects
: Show nested subprojects in the explorer
Slow Task Provider Warning
Since vscode v1.40, you will start seeing warning notifications when the gradle task provider takes too long.
It can take a while to refresh the gradle tasks, so you should permanently ignore this warning by clicking on "Don't warn again for gradle tasks", or add the following to your settings.json
:
"task.slowProviderWarning": [
"gradle"
]
Credits
- Originally forked from Cazzar/vscode-gradle
- Heavily inspired by the built-in npm extension
Release Notes
See CHANGELOG.md
License
See LICENSE.md