Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code
Перейти к файлу
Richard Willis 345a786fa0
Update README.md
2019-12-12 19:12:46 +01:00
.github Remove snyk 2019-12-09 20:49:28 +01:00
.vscode Use eslint instead of tslint 2019-12-07 01:08:07 +01:00
images Improve logging 2019-12-10 22:34:41 +01:00
java-gradle-tasks Add editorconfig and minor java code reorg 2019-12-11 19:12:24 +01:00
resources Show nested projects in explorer 2019-11-25 23:44:37 +01:00
snippets Add basic snippets to add a new gradle task 2019-11-18 13:22:49 +01:00
src Improve logging 2019-12-10 22:34:41 +01:00
test-fixtures Add tests for running task with custom args 2019-12-05 16:34:49 +01:00
.eslintignore Use eslint instead of tslint 2019-12-07 01:08:07 +01:00
.eslintrc.js Add sonarqube 2019-12-07 16:44:02 +01:00
.gitignore Better sonarqube analysis 2019-12-07 17:37:38 +01:00
.npmrc First version 2019-10-20 17:04:20 +02:00
.nvmrc Update README & node version 2019-10-23 18:18:24 +02:00
.prettierignore Show nested projects in explorer 2019-11-25 23:44:37 +01:00
.prettierrc.js Use eslint instead of tslint 2019-12-07 01:08:07 +01:00
.vscodeignore Use eslint instead of tslint 2019-12-07 01:08:07 +01:00
CHANGELOG.md Update CHANGELOG.md 2019-12-08 19:05:21 +01:00
CONTRIBUTING.md Add info on how to run the project 2019-12-10 21:42:48 +01:00
LICENSE.md Add license 2019-10-20 17:53:28 +02:00
README.md Update README.md 2019-12-12 19:12:46 +01:00
icon.png Initial Code Commit. 2015-11-20 00:21:16 +11:00
package-lock.json Bump vscode-test from 1.2.3 to 1.3.0 2019-12-12 06:48:21 +00:00
package.json Bump vscode-test from 1.2.3 to 1.3.0 2019-12-12 06:48:21 +00:00
sonar-project.properties Add java test coverage and remove sonarqube gradle plugin 2019-12-07 18:38:27 +01:00
tsconfig.json Linting upgrade 2019-11-13 19:36:30 +01:00

README.md

vscode-gradle

Build status Marketplace Version Installs Security Rating

Run Gradle tasks in VS Code.

Screencat

Features

  • Run Gradle tasks as VS Code tasks
  • List & run Gradle tasks in the Explorer
  • Multi-root workspace folders supported
  • Groovy/Kotlin 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 tasks
  • gradle.enableTasksExplorer: Enable an explorer view for Gradle tasks

Snippets

This extensions provides snippets for the groovy and kotlin build files:

  • cgt: Create a new Gradle task

Slow Task Provider Warning

Since vscode v1.40 you will see 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"
]

Troubleshooting

View the Gradle Tasks refresh process output and errors by selecting "Gradle Tasks" in the output panel.
Gradle Task output and errors will be shown in the Terminal panel after you've run a task.

Credits

Release Notes

See CHANGELOG.md.

License

See LICENSE.md.