Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.08 KB

Build Status

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.