updated maven artifact versions for language servers

This commit is contained in:
Martin Lippert
2017-06-02 09:59:23 +02:00
parent b6b66c294f
commit 737e2b2a02
10 changed files with 34 additions and 19 deletions

View File

@@ -56,7 +56,7 @@ public class CloudFoundryManifestLanguageServer extends ProcessStreamConnectionP
}
protected String getLanguageServerJARLocation() {
String languageServer = "manifest-yaml-language-server-0.0.3-SNAPSHOT.jar";
String languageServer = "manifest-yaml-language-server-" + Constants.LANGUAGE_SERVER_VERSION + "-SNAPSHOT.jar";
Bundle bundle = Platform.getBundle(Constants.PLUGIN_ID);
File dataFile = bundle.getDataFile(languageServer);

View File

@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016 Pivotal, Inc.
* Copyright (c) 2016, 2017 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -16,5 +16,6 @@ package org.springframework.boot.ide.cloudfoundry.server;
public class Constants {
public static final String PLUGIN_ID = "org.springframework.boot.ide.cloudfoundry.server";
public static final String LANGUAGE_SERVER_VERSION = "0.0.8";
}