Skip to content

Commit 143307e

Browse files
authored
Merge pull request #1010 from quickfix-j/chrjohn-devcontainer
use basic container
2 parents aebedab + 11519d6 commit 143307e

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.devcontainer/devcontainer.json

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
2-
"name": "Java",
3-
"image": "mcr.microsoft.com/devcontainers/java:1-11",
4-
"features": {
5-
"ghcr.io/devcontainers/features/java:1": {
6-
"version": "8",
7-
"jdkDistro": "tem",
8-
"installMaven": "true",
9-
"mavenVersion": "latest",
10-
"installGradle": "false"
11-
}
12-
}
2+
"name": "Java",
3+
"image": "mcr.microsoft.com/devcontainers/base:debian",
4+
"features": {
5+
// Install java.
6+
// See https://github.com/devcontainers/features/tree/main/src/java#options for details.
7+
"ghcr.io/devcontainers/features/java:1": {
8+
"version": "8",
9+
"installGradle": false,
10+
"jdkDistro": "tem"
11+
}
12+
},
13+
14+
"onCreateCommand": "./mvnw install -B -V -Dmaven.javadoc.skip=true -PskipBundlePlugin,minimal-fix-latest"
1315
}

0 commit comments

Comments
 (0)