aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/groovyls/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/servers/groovyls/init.lua')
-rw-r--r--lua/nvim-lsp-installer/servers/groovyls/init.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/lua/nvim-lsp-installer/servers/groovyls/init.lua b/lua/nvim-lsp-installer/servers/groovyls/init.lua
deleted file mode 100644
index 28316518..00000000
--- a/lua/nvim-lsp-installer/servers/groovyls/init.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-local server = require "nvim-lsp-installer.server"
-local path = require "nvim-lsp-installer.core.path"
-local std = require "nvim-lsp-installer.core.managers.std"
-local git = require "nvim-lsp-installer.core.managers.git"
-
-return function(name, root_dir)
- return server.Server:new {
- name = name,
- root_dir = root_dir,
- languages = { "groovy" },
- homepage = "https://github.com/GroovyLanguageServer/groovy-language-server",
- ---@param ctx InstallContext
- installer = function(ctx)
- std.ensure_executable "javac"
- git.clone({ "https://github.com/GroovyLanguageServer/groovy-language-server" }).with_receipt()
- ctx:promote_cwd()
- ctx.spawn.gradlew {
- "build",
- with_paths = { ctx.cwd:get() },
- }
- end,
- default_options = {
- cmd = { "java", "-jar", path.concat { root_dir, "build", "libs", "groovyls-all.jar" } },
- },
- }
-end