fixed team warps. still need to document what works and what doesn't.
probably a job for tomorrow
This commit is contained in:
@@ -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
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user