Skip to content

Develop Java in VS Code with a development container

License

Notifications You must be signed in to change notification settings

klaasjand/vscode-remote-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VS Code remote Java development container

Develop Java in VS Code with a Debian based development container

Devcontainer settings

Please find the devcontainer settings in devcontainer.json

Mandatory: replace debian:stable-slim with a Debian based Java JDK image of choice before opening the project in a container.

"DOCKER_IMAGE": "debian:stable-slim"

Optional: add an url to an Eclipse based Java style guide.

"java.format.settings.url": ""

Optional: replace the lines below with: vscjava.vscode-java-pack if you want all the extensions below including the IntelliCode extension.

    "redhat.java",
    "vscjava.vscode-java-debug",
    "vscjava.vscode-java-test",
    "vscjava.vscode-maven",
    "vscjava.vscode-java-dependency"