forked from rradczewski/kata-bootstraps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devcontainer.json
34 lines (34 loc) · 977 Bytes
/
devcontainer.json
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
{
"name": "Java",
"build": {
"dockerfile": "Dockerfile"
},
"onCreateCommand": "mvn test -DskipTests=true",
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "mvn test | tee /dev/stderr | grep -q 'Tests run: 2, Failures: 1, Errors: 0, Skipped: 0'",
"testCommand": "mvn test",
"languageLogo": "../java-original.svg",
"resources": [
{
"name": "Java Reference",
"url": "https://www.oracle.com/pls/topic/lookup?ctx=en/java/javase&id=javaselatest"
},
{
"name": "AssertJ Reference",
"url": "https://assertj.github.io/doc/"
},
{
"name": "Mockito Reference",
"url": "https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html"
}
]
},
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"MS-vsliveshare.vsliveshare"
]
}
}
}