升级配置修改
This commit is contained in:
3
.vscode/launch.json
vendored
3
.vscode/launch.json
vendored
@@ -5,7 +5,8 @@
|
|||||||
"name": "JeecgSystemApplication",
|
"name": "JeecgSystemApplication",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"mainClass": "org.jeecg.JeecgSystemApplication",
|
"mainClass": "org.jeecg.JeecgSystemApplication",
|
||||||
"projectName": "jeecg-system-start"
|
"projectName": "jeecg-system-start",
|
||||||
|
"preLaunchTask": "JeecgBoot: compile"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -2,7 +2,8 @@
|
|||||||
"java.compile.nullAnalysis.mode": "automatic",
|
"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.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.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.jdt.ls.java.home": "C:\\Program Files\\Java\\jdk-17",
|
||||||
"java.configuration.runtimes": [
|
"java.configuration.runtimes": [
|
||||||
{
|
{
|
||||||
|
|||||||
21
.vscode/tasks.json
vendored
21
.vscode/tasks.json
vendored
@@ -1,6 +1,27 @@
|
|||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"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",
|
"label": "YY.Admin: restore",
|
||||||
"type": "process",
|
"type": "process",
|
||||||
|
|||||||
Reference in New Issue
Block a user