个人知识管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
334 B

{
"version": "2.0.0",
"tasks": [
{
"label": "编译Java项目",
"type": "shell",
"command": "javac",
"args": [
"-cp",
"src/main/java",
"-d",
"target/classes",
"src/main/java/com/example/App.java"
],
"group": "build",
"isBackground": false,
"problemMatcher": [
"$javac"
]
}
]
}