dev.j-a.ide.lsp
Owner:
Joachim Ansorg
Gradle plugin to help relocate the LSP library for JetBrains plugins.
https://github.com/jansorg/lsp-gradle-plugin
Sources: https://github.com/jansorg/lsp-gradle-plugin.git
Version 0.3.2 (latest)
Created 17 March 2025.
Gradle plugin to help relocate the LSP library for JetBrains plugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.j-a.ide.lsp") version "0.3.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("dev.j-a.ide.lsp:dev.j-a.ide.lsp.gradle.plugin:0.3.2") }
It can then be applied in the precompiled script plugin:plugins { id("dev.j-a.ide.lsp") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.j-a.ide.lsp:dev.j-a.ide.lsp.gradle.plugin:0.3.2") } } apply(plugin = "dev.j-a.ide.lsp")
- Applying plugins to all subprojects .