This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git
The following commit(s) were added to refs/heads/master by this push:
new dc92e91e2 Add Codespaces configuration
dc92e91e2 is described below
commit dc92e91e2974367dfb314ba985f18f227e061604
Author: Andreas Veithen <[email protected]>
AuthorDate: Sun Jul 16 21:00:57 2023 +0000
Add Codespaces configuration
---
.devcontainer/devcontainer.json | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 000000000..661ddd6da
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,18 @@
+{
+ "image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
+ "features": {
+ "ghcr.io/devcontainers/features/java:1": {
+ "version": "11",
+ "installMaven": "true"
+ },
+ // docker is useful to run diffoscope
+ "ghcr.io/devcontainers/features/docker-in-docker:2": {}
+ },
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "github.vscode-github-actions"
+ ]
+ }
+ }
+}