fixed team warps. still need to document what works and what doesn't.

probably a job for tomorrow
This commit is contained in:
2025-09-06 23:18:22 +01:00
parent b56a3c8218
commit 3ca436b7e4
11 changed files with 600 additions and 316 deletions
+37
View File
@@ -0,0 +1,37 @@
// Project tasks configuration. See https://zed.dev/docs/tasks for documentation.
[
{
"label": "Maven Compile",
"command": "mvn",
"args": ["compile"],
"shell": "system",
"use_new_terminal": false
},
{
"label": "Maven Clean Package",
"command": "mvn",
"args": ["clean", "package"],
"shell": "system",
"use_new_terminal": false
},
{
"label": "Maven Test",
"command": "mvn",
"args": ["test"],
"shell": "system",
"use_new_terminal": false
},
{
"label": "Run Project",
"command": "./run.sh",
"shell": "system",
"use_new_terminal": false
},
{
"label": "Maven Package (Skip Tests)",
"command": "mvn",
"args": ["clean", "package", "-DskipTests"],
"shell": "system",
"use_new_terminal": false
}
]