-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathunionclef.code-workspace
More file actions
86 lines (86 loc) · 2.8 KB
/
Copy pathunionclef.code-workspace
File metadata and controls
86 lines (86 loc) · 2.8 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"folders": [
{
"path": ".",
"name": "unionclef"
}
],
"settings": {
"java.autobuild.enabled": true,
"java.project.outputPath": "build/classes/java/main",
"java.server.launchMode": "Standard",
"java.configuration.updateBuildConfiguration": "automatic",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable",
"gradle.nestedProjects": true,
"gradle.autoDetect": "on",
"java.compile.nullAnalysis.mode": "automatic",
"files.exclude": {
"**/*.rpyc": true,
"**/*.rpa": true,
"**/*.rpymc": true,
"**/cache/": true
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "unionclef: compileJava",
"type": "shell",
"command": "gradlew :1.21.1:compileJava",
"group": "build",
"problemMatcher": []
},
{
"label": "unionclef: runClient",
"type": "shell",
"command": "gradlew :1.21.1:runClient",
"group": "build",
"problemMatcher": []
},
{
"label": "unionclef: runClient (debug)",
"type": "shell",
"command": "gradlew :1.21.1:runClient --debug-jvm",
"group": "build",
"problemMatcher": [
{
"pattern": { "regexp": "^$", "file": 1, "line": 2, "message": 3 },
"background": {
"activeOnStart": true,
"beginsPattern": "^.*Listening for transport.*$",
"endsPattern": "^.*Listening for transport.*$"
}
}
],
"isBackground": true
},
{
"label": "unionclef: build",
"type": "shell",
"command": "gradlew :1.21.1:build",
"group": "build",
"problemMatcher": []
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Attach to Minecraft (debug)",
"request": "attach",
"hostName": "localhost",
"port": 5005
}
],
"compounds": [
{
"name": "unionclef: Debug Client",
"configurations": ["Attach to Minecraft (debug)"],
"preLaunchTask": "unionclef: runClient (debug)"
}
]
}
}