升级配置修改

This commit is contained in:
2026-05-19 10:11:20 +08:00
parent 3eed489df6
commit 5fd499e095
3 changed files with 25 additions and 2 deletions

3
.vscode/launch.json vendored
View File

@@ -5,7 +5,8 @@
"name": "JeecgSystemApplication",
"request": "launch",
"mainClass": "org.jeecg.JeecgSystemApplication",
"projectName": "jeecg-system-start"
"projectName": "jeecg-system-start",
"preLaunchTask": "JeecgBoot: compile"
}
]
}

View File

@@ -2,7 +2,8 @@
"java.compile.nullAnalysis.mode": "automatic",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable",
"java.import.maven.enabled": true,
"java.configuration.updateBuildConfiguration": "interactive",
"java.configuration.updateBuildConfiguration": "automatic",
"java.autobuild.enabled": true,
"java.jdt.ls.java.home": "C:\\Program Files\\Java\\jdk-17",
"java.configuration.runtimes": [
{

21
.vscode/tasks.json vendored
View File

@@ -1,6 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "JeecgBoot: compile",
"type": "shell",
"command": "mvn",
"args": [
"compile",
"-pl",
"jeecg-module-system/jeecg-system-start",
"-am",
"-DskipTests",
"-q"
],
"options": {
"cwd": "${workspaceFolder}/jeecg-boot",
"env": {
"JAVA_HOME": "C:\\Program Files\\Java\\jdk-17"
}
},
"problemMatcher": "$javac",
"group": "build"
},
{
"label": "YY.Admin: restore",
"type": "process",