Skip to content

Commit

Permalink
Update devcontainer specification
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Aug 12, 2024
1 parent e3ba027 commit 4076bda
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
8 changes: 5 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"name": "SchemaCrawler",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "21",
Expand All @@ -9,13 +12,12 @@
},
"customizations": {
"vscode": {
"settings": {
},
"settings": {},
"extensions": [
"vscjava.vscode-java-pack",
"editorconfig.editorconfig"
]
}
},
"postCreateCommand": "mvn dependency:resolve"
"postCreateCommand": "mvn dependency:resolve dependency:sources -Dclassifier=javadoc"
}
22 changes: 10 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{
"github.codespaces.defaultExtensions": [
"vscjava.vscode-java-pack",
"vscjava.vscode-maven",
"vscjava.vscode-java-test",
"editorconfig.editorconfig",
"GitHub.codespaces",
"GitHub.vscode-pull-request-github"
],
"editor.tabSize": 2,
"scm.showActionButton": false,
"java.compile.nullAnalysis.mode": "automatic",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
"github.codespaces.defaultExtensions": [
"vscjava.vscode-java-pack",
"editorconfig.editorconfig",
"GitHub.codespaces",
"GitHub.vscode-pull-request-github"
],
"editor.tabSize": 2,
"scm.showActionButton": false,
"java.compile.nullAnalysis.mode": "automatic",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
}

0 comments on commit 4076bda

Please sign in to comment.