Skip to content

Commit 55f0c8a

Browse files
committed
feat: add devcontainers config.
1 parent 429d03c commit 55f0c8a

55 files changed

Lines changed: 20 additions & 2 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "java",
3+
"image": "gradle:jdk21-alpine",
4+
"customizations": {
5+
"vscode": {
6+
"extensions": [
7+
"vscjava.vscode-java-pack"
8+
],
9+
"settings": {}
10+
}
11+
},
12+
"workspaceMount": "source=${localWorkspaceFolder},target=/java,type=bind,consistency=delegated",
13+
"workspaceFolder": "/java",
14+
"runArgs": []
15+
}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24-
replay_pid*
24+
replay_pid*
25+
26+
# build
27+
build/

DS_Store

-6 KB
Binary file not shown.

LICENSE

100644100755
File mode changed.

README.md

100644100755
Lines changed: 1 addition & 1 deletion

application_projects/README.md

100644100755
File mode changed.

src/main/java/bit.java

100644100755
File mode changed.

src/main/java/legacy/AutoBoxing.java

100644100755
File mode changed.

src/main/java/legacy/BooleanWrapperSwitch.java

100644100755
File mode changed.

src/main/java/legacy/CH5_LoopingConstructs.java

100644100755
File mode changed.

0 commit comments

Comments
 (0)