We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f49da commit b25b41aCopy full SHA for b25b41a
1 file changed
.vscode/tasks.json
@@ -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
13
+ "command": "mvn -B test",
14
+ "group": "test"
15
16
17
+ "label": "deploy",
18
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