Some fixes to accomodate windows

This commit is contained in:
kdvolder
2017-12-11 16:00:19 -08:00
parent b51e2fa0da
commit 22e8ba80ba
9 changed files with 52 additions and 21 deletions

View File

@@ -39,7 +39,7 @@ public class SpringBootJavaLanguageServer extends STS4LanguageServerProcessStrea
commands.add("-Dlsp.completions.indentation.enable=true");
commands.add("-Xmx1024m");
commands.add("-cp");
commands.add(getToolsJAR() + ":" + getLanguageServerJARLocation());
commands.add(getToolsJAR() + File.pathSeparator + getLanguageServerJARLocation());
commands.add("org.springframework.boot.loader.JarLauncher");
String workingDir = getWorkingDirLocation();