fixed outdated references to old language server artifact IDs

This commit is contained in:
Martin Lippert
2017-04-18 15:40:42 +02:00
parent 1b47102fcf
commit 7f127bd898
6 changed files with 9 additions and 9 deletions

View File

@@ -17,7 +17,7 @@
<dependencies>
<dependency>
<groupId>org.springframework.ide.vscode</groupId>
<artifactId>vscode-boot-java</artifactId>
<artifactId>boot-java-language-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
@@ -39,7 +39,7 @@
<artifactItems>
<artifactItem>
<groupId>org.springframework.ide.vscode</groupId>
<artifactId>vscode-boot-java</artifactId>
<artifactId>boot-java-language-server</artifactId>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/../servers</outputDirectory>
</artifactItem>

View File

@@ -94,7 +94,7 @@ public class SpringBootJavaLanguageServer extends ProcessStreamConnectionProvide
}
protected String getLanguageServerJARLocation() {
String languageServer = "vscode-boot-java-0.0.1-SNAPSHOT.jar";
String languageServer = "boot-java-language-server-0.0.1-SNAPSHOT.jar";
Bundle bundle = Platform.getBundle(Constants.PLUGIN_ID);
File dataFile = bundle.getDataFile(languageServer);