-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #464 from usdot-jpo-ode/release/1.2.4
Release/1.2.4
- Loading branch information
Showing
45 changed files
with
1,459 additions
and
1,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.154.0/containers/java-8 | ||
{ | ||
"name": "Java 8", | ||
"name": "Java 11", | ||
"dockerFile": "Dockerfile", | ||
"overrideCommand": false, | ||
"shutdownAction": "stopContainer", | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"java.configuration.runtimes": [ | ||
{ | ||
"default": true, | ||
"name": "JavaSE-1.8", | ||
"path": "/root/.sdkman/candidates/java/current" | ||
} | ||
] | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"vscjava.vscode-java-pack", | ||
"vscjava.vscode-java-debug", | ||
"vscjava.vscode-maven", | ||
"vscjava.vscode-java-dependency", | ||
"vscjava.vscode-java-test", | ||
"hbenl.vscode-test-explorer", | ||
"ms-vscode.test-adapter-converter", | ||
"esbenp.prettier-vscode", | ||
"mhutchie.git-graph", | ||
"tabnine.tabnine-vscode" | ||
"tabnine.tabnine-vscode", | ||
"redhat.java", | ||
"redhat.vscode-commons" | ||
], | ||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [8080, 9090, 46753, 46800, 5555, 6666, 8090, 2181, 9092], | ||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "bash .devcontainer/post-create.sh", | ||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
// "remoteUser": "vscode" | ||
"runArgs": ["--network=host"] | ||
"runArgs": [ | ||
"--network=host" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "automatic", | ||
"java.test.config": { | ||
"name": "testConfig", | ||
"vmArgs": ["-javaagent:/root/.m2/repository/org/jmockit/jmockit/1.49/jmockit-1.49.jar"] | ||
}, | ||
"java.test.defaultConfig": "testConfig" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.