You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2023/05/22 20:04:19 UTC

[ws-axiom] branch master updated: Add Codespaces configuration

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-axiom.git


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

commit 1e9552a3e7b7ce30b068115ecf9eafb945b064a5
Author: Andreas Veithen <an...@gmail.com>
AuthorDate: Mon May 22 20:03:20 2023 +0000

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

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 000000000..c731494c1
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,18 @@
+{
+	"name": "Java",
+	"image": "mcr.microsoft.com/devcontainers/java:0-17",
+	"features": {
+		"ghcr.io/devcontainers/features/java:1": {
+			"version": "none",
+			"installMaven": "true",
+			"installGradle": "false"
+		}
+	},
+	"customizations": {
+		"vscode": {
+			"extensions": [
+				"github.vscode-github-actions"
+			]
+		}
+	}
+}
diff --git a/.gitpod.yml b/.gitpod.yml
deleted file mode 100644
index d4288ab94..000000000
--- 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