We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aebedab + 11519d6 commit 143307eCopy full SHA for 143307e
1 file changed
.devcontainer/devcontainer.json
@@ -1,13 +1,15 @@
1
{
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
+ "name": "Java",
+ "image": "mcr.microsoft.com/devcontainers/base:debian",
+ "features": {
+ // Install java.
+ // See https://github.com/devcontainers/features/tree/main/src/java#options for details.
+ "ghcr.io/devcontainers/features/java:1": {
+ "version": "8",
+ "installGradle": false,
+ "jdkDistro": "tem"
+ }
+ },
13
+
14
+ "onCreateCommand": "./mvnw install -B -V -Dmaven.javadoc.skip=true -PskipBundlePlugin,minimal-fix-latest"
15
}
0 commit comments