From 868ebffb1e91f4fd233f16339d30d1bee1a557fb Mon Sep 17 00:00:00 2001 From: Martin Lippert Date: Mon, 19 Feb 2018 09:29:19 +0100 Subject: [PATCH] fixed name of the boot language server jar to let the plugin find it --- .../tooling/boot/ls/SpringBootLanguageServer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/SpringBootLanguageServer.java b/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/SpringBootLanguageServer.java index a4d3f1526..08dbc0aa0 100644 --- a/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/SpringBootLanguageServer.java +++ b/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/SpringBootLanguageServer.java @@ -68,7 +68,7 @@ public class SpringBootLanguageServer extends STS4LanguageServerProcessStreamCon } protected String getLanguageServerJARLocation() { - String languageServer = "boot-java-language-server-" + Constants.LANGUAGE_SERVER_VERSION; + String languageServer = "spring-boot-language-server-" + Constants.LANGUAGE_SERVER_VERSION; Bundle bundle = Platform.getBundle(Constants.PLUGIN_ID); String bundleVersion = bundle.getVersion().toString(); @@ -89,7 +89,7 @@ public class SpringBootLanguageServer extends STS4LanguageServerProcessStreamCon File userHome = new File(System.getProperty("user.home")); File locallyBuiltJar = new File( userHome, - "git/sts4/headless-services/boot-java-language-server/target/boot-java-language-server-"+Constants.LANGUAGE_SERVER_VERSION + "git/sts4/headless-services/spring-boot-language-server/target/spring-boot-language-server-"+Constants.LANGUAGE_SERVER_VERSION ); if (locallyBuiltJar.exists()) { return locallyBuiltJar.getAbsolutePath();