Maven and JDK 21 Migration

This commit is contained in:
2026-07-16 22:35:34 +05:30
parent 0080857d4e
commit b6c9ee4bf8
1409 changed files with 215496 additions and 35087 deletions

24
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "matrix: package",
"type": "shell",
"command": "mvn",
"args": [
"package",
"-DskipTests"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"JAVA_HOME": "/Users/maddy/Library/Java/JavaVirtualMachines/ms-21.0.8/Contents/Home"
}
},
"group": "build",
"problemMatcher": [
"$javac"
]
}
]
}