Skip to content

Commit b25b41a

Browse files
committed
Add VS Code tasks definitions
1 parent 65f49da commit b25b41a

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "verify",
6+
"type": "shell",
7+
"command": "mvn -B verify",
8+
"group": "build"
9+
},
10+
{
11+
"label": "test",
12+
"type": "shell",
13+
"command": "mvn -B test",
14+
"group": "test"
15+
},
16+
{
17+
"label": "deploy",
18+
"type": "shell",
19+
"command": "mvn -Dscijava.app.directory=/opt/Fiji.app",
20+
"group": {
21+
"kind": "build",
22+
"isDefault": true
23+
},
24+
"problemMatcher": []
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)