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/axis-axis2-java-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 05a806e034 Add Codespaces configuration
05a806e034 is described below

commit 05a806e034094bfa0c480ce92dee7f33069fc93e
Author: Andreas Veithen <andreas.veit...@gmail.com>
AuthorDate: Sun Jun 25 14:27:58 2023 +0000

    Add Codespaces configuration
---
 .devcontainer/devcontainer.json | 23 +++++++++++++++++++++++
 .gitpod.yml                     | 22 ----------------------
 2 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000000..4d62e3e012
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,23 @@
+{
+       "image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
+       "features": {
+               "ghcr.io/devcontainers/features/java:1": {
+                       "version": "11",
+                       "jdkDistro": "zulu",
+                       "installMaven": "true"
+               },
+               "ghcr.io/devcontainers-contrib/features/mvnd-sdkman:2": {
+                       "jdkVersion": "none"
+               }
+       },
+       "customizations": {
+               "vscode": {
+                       "extensions": [
+                               "github.vscode-github-actions"
+                       ]
+               }
+       },
+       "hostRequirements": {
+               "memory": "8gb"
+       }
+}
diff --git a/.gitpod.yml b/.gitpod.yml
deleted file mode 100644
index d4288ab94a..0000000000
--- a/.gitpod.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-image: gitpod/workspace-java-17
-
-tasks:
-  - init: mvn install -DskipTests
-
-vscode:
-  extensions:
-    - vscjava.vscode-java-pack

Reply via email to