You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .vscode/tasks.json
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,22 @@
5
5
},
6
6
"tasks": [
7
7
{
8
-
"label": "build",
8
+
"label": "compile",
9
9
"type": "shell",
10
-
"command": "./gradlew build",
10
+
"command": "./gradlew testClasses",
11
11
"group": {
12
12
"kind": "build",
13
13
"isDefault": true
14
14
},
15
15
"problemMatcher": ["$java"]
16
16
},
17
+
{
18
+
"label": "build (full)",
19
+
"type": "shell",
20
+
"command": "./gradlew build",
21
+
"group": "build",
22
+
"problemMatcher": ["$java"]
23
+
},
17
24
{
18
25
"label": "assemble",
19
26
"type": "shell",
@@ -62,6 +69,17 @@
62
69
"group": "build",
63
70
"problemMatcher": []
64
71
},
72
+
{
73
+
"label": "reset build state",
74
+
"detail": "Deep clean: removes build/ and the .gradle project cache. Use when Spotless reports targets outside the project dir after switching between host and container builds.",
0 commit comments