diff --git a/concourse/tasks/bump-versions.sh b/concourse/tasks/bump-versions.sh index 8ca8650a8..5d060acb1 100755 --- a/concourse/tasks/bump-versions.sh +++ b/concourse/tasks/bump-versions.sh @@ -16,7 +16,7 @@ for extension_id in $(ls -d vscode-*) do cd $vscode_sources/$extension_id echo "Should update version of $extension_id to $version" - npm version $version + npm version --allow-same-version $version git add package.json echo "" done diff --git a/headless-services/spring-boot-language-server/build.sh b/headless-services/spring-boot-language-server/build.sh index c19c435a1..d74135dfb 100755 --- a/headless-services/spring-boot-language-server/build.sh +++ b/headless-services/spring-boot-language-server/build.sh @@ -6,6 +6,7 @@ cd ../jdt-ls-extension if command -v xvfb-run ; then echo "Using xvfb to run in headless environment..." xvfb-run ../mvnw \ + -DskipTests \ -DtrimStackTrace=false \ -f ../pom.xml \ -pl $modules \ @@ -13,6 +14,7 @@ if command -v xvfb-run ; then clean install else ../mvnw \ + -DskipTests \ -DtrimStackTrace=false \ -f ../pom.xml \ -pl $modules \ @@ -22,6 +24,7 @@ fi cd ../xml-ls-extension ../mvnw \ -DtrimStackTrace=false \ + -DskipTests \ -f ../pom.xml \ -pl xml-ls-extension \ -am \ diff --git a/vscode-extensions/vscode-spring-boot/package.json b/vscode-extensions/vscode-spring-boot/package.json index 4df65bbc5..2a66564cc 100644 --- a/vscode-extensions/vscode-spring-boot/package.json +++ b/vscode-extensions/vscode-spring-boot/package.json @@ -44,8 +44,8 @@ "title": "Create a new Spring Boot project", "description": "The easiest way to create new Spring Boot projects in VS Code is to use the Spring Initializr integration. Open the command palette in VS Code, search for __Spring__ and create a new Spring Boot project from there.\n[Create New Spring Boot Project](command:spring.initializr.maven-project)", "media": { - "image": "walkthroughs/spring-initializr-integration.png", - "altText": "Create a new Maven-based Spring Boot project" + "image": "walkthroughs/spring-initializr-integration.png", + "altText": "Create a new Maven-based Spring Boot project" } }, {