-
Notifications
You must be signed in to change notification settings - Fork 0
/
personium-core.code-workspace
55 lines (55 loc) · 1.93 KB
/
personium-core.code-workspace
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
{
"folders": [
{
"name": "presonium-core",
"path": "/workspace/personium-core"
},
{
"name": "personium-plugins",
"path": "/workspace/personium-plugins"
},
{
"name": "personium-plugin-base",
"path": "/workspace/personium-plugin-base"
},
{
"name": "personium-lib-common",
"path": "/workspace/personium-lib-common"
},
{
"name": "personium-lib-es-adapter",
"path": "/workspace/personium-lib-es-adapter"
}
],
"settings": {
"terminal.integrated.experimentalLinkProvider": false,
"terminal.integrated.gpuAcceleration": "auto",
"java.checkstyle.configuration": "/workspace/personium-core/personium-checkstyle.xml",
"java.checkstyle.properties": {
"project_loc": "."
},
"java.checkstyle.version": "10.3.3",
"java.format.settings.url": "/workspace/personium-core/formatter.xml",
"java.format.settings.profile": "personium",
"java.test.config": [
{
"name": "testConfig",
"vmArgs": [
"-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG",
"-Dio.personium.esTestingCluster=personium",
"--add-opens=java.base/java.io=ALL-UNNAMED",
"--add-opens=java.base/java.lang=ALL-UNNAMED",
"--add-opens=java.base/java.lang.reflect=ALL-UNNAMED",
"--add-opens=java.base/java.util=ALL-UNNAMED",
"--add-opens=java.base/java.util.concurrent=ALL-UNNAMED",
"--add-opens=java.base/java.util.regex=ALL-UNNAMED",
"--add-opens=java.base/java.util.stream=ALL-UNNAMED",
// "-Djava.security.properties=./src/test/resources/java.security",
],
}
],
"java.test.defaultConfig": "testConfig",
"java.configuration.updateBuildConfiguration": "interactive",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:jni+resolve=off"
}
}