https://github.com/lacasseio/vscode-gradle-plugin
Gradle plugin for generating Visual Studio Code IDE files
https://github.com/lacasseio/vscode-gradle-plugin
gradle gradle-plugin ide visual-studio-code vscode
Last synced: 20 days ago
JSON representation
Gradle plugin for generating Visual Studio Code IDE files
- Host: GitHub
- URL: https://github.com/lacasseio/vscode-gradle-plugin
- Owner: lacasseio
- License: apache-2.0
- Created: 2018-10-08T06:50:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T16:36:29.000Z (over 6 years ago)
- Last Synced: 2025-02-10T02:33:20.788Z (2 months ago)
- Topics: gradle, gradle-plugin, ide, visual-studio-code, vscode
- Language: Groovy
- Size: 328 KB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/lacasseio/vscode-gradle-plugin)
# Gradle plugin for Visual Studio Code IDE
## Using the plugin
### Source dependencies
settings.gradle
```
sourceControl {
gitRepository("https://github.com/lacasseio/vscode-gradle-plugin.git") {
producesModule("io.lacasse.vscode:vscode-gradle-plugin")
}
}
```build.gradle
```
buildscript {
dependencies {
classpath "io.lacasse.vscode:vscode-gradle-plugin:latest.integration"
}
}
```## Public API
Anything that is located inside an internal package is considered implementation specific.
You shouldn't rely on this code as it may be removed or change without notice.
The behavior will stay the same without prior deprecation or major version change.
If you need to use any internal API, please discuss it in a new issue with clear use case.## Contribution
Please open issues or provide PRs for any features or bugs this plugin may have.
Keep in mind that all features or bugs needs to have the proper test coverage.