Skip to content

Commit

Permalink
Task: add devcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed Jul 20, 2024
1 parent 60e6fc4 commit cb7dd57
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "Java 17",
"image": "mcr.microsoft.com/devcontainers/java:17-bullseye",
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "17",
"installMaven": "true",
"installGradle": "false"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"vscjava.vscode-java-pack",
"github.vscode-github-actions",
"github.vscode-pull-request-github"
]
},
"codespaces": {
"openFiles": [
"README",
"src/index.js"
]
}
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
.project
.settings
.classpath
.factorypath

# NetBeans #
############
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.compile.nullAnalysis.mode": "automatic"
}

0 comments on commit cb7dd57

Please sign in to comment.