This commit is contained in:
BoykoAlex
2021-06-17 17:29:05 -04:00
3 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -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 \

View File

@@ -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"
}
},
{