Make the new jdt.ls.extension test run as part of the build

This commit is contained in:
Kris De Volder
2018-05-04 09:14:15 -07:00
parent 689da33d90
commit 5e850fb9fd
5 changed files with 69 additions and 6 deletions

View File

@@ -69,12 +69,18 @@
"description": "Enable/Disable Spring running Boot application live hints decorators in Java source code"
},
"spring-boot.ls.java.home": {
"type": ["string", null],
"type": [
"string",
null
],
"default": null,
"description": "Override JAVA_HOME used for launching the spring-boot-language-server JVM process."
},
"spring-boot.ls.java.heap": {
"type": ["string", null],
"type": [
"string",
null
],
"default": null,
"description": "Max JVM heap value, passed via -Xmx argument when launching spring-boot-language-server JVM process."
}

View File

@@ -17,7 +17,7 @@ mkdir -p ${workdir}/jars
# Use maven to build jdt ls extension
cd ../../headless-services/jdt-ls-extension
../mvnw clean package
../mvnw clean integration-test
cp org.springframework.tooling.jdt.ls.extension/target/*.jar ${workdir}/jars/jdt-ls-extension.jar
cp org.springframework.tooling.jdt.ls.commons/target/*.jar ${workdir}/jars/jdt-ls-commons.jar