-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.json
More file actions
70 lines (70 loc) · 1.82 KB
/
Copy pathjava.json
File metadata and controls
70 lines (70 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"tool": "java",
"displayName": "Java Development",
"detection": {
"commands": ["java", "javac", "mvn", "gradle", "sbt"],
"paths": ["/usr/bin/java", "/Library/Java/JavaVirtualMachines"]
},
"caches": [
{
"id": "maven-cache",
"path": "~/.m2/repository",
"type": "packages",
"description": "Maven local repository cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "gradle-cache",
"path": "~/.gradle/caches",
"type": "packages",
"description": "Gradle build and dependency cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "gradle",
"args": ["clean"]
}
},
{
"id": "gradle-daemon-logs",
"path": "~/.gradle/daemon",
"type": "logs",
"description": "Gradle daemon logs and metadata",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "sbt-cache",
"path": "~/.sbt",
"type": "packages",
"description": "SBT (Scala Build Tool) cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "ivy-cache",
"path": "~/.ivy2/cache",
"type": "packages",
"description": "Ivy dependency manager cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "coursier-cache",
"path": "~/Library/Caches/Coursier",
"type": "packages",
"description": "Coursier Scala artifact cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "intellij-cache",
"path": "~/Library/Caches/JetBrains",
"type": "buildArtifacts",
"description": "IntelliJ IDEA caches and indexes",
"safeToDelete": true,
"requiresConfirmation": false
}
]
}