From 9ad6d9ac21dc63d25aeff044765b8a0e10280167 Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 17 Jun 2020 03:48:30 +0000 Subject: [PATCH] Fully automate dev setup with Gitpod This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitHub and GitLab that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 43c45924a..244ff3a01 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,5 +2,5 @@ image: file: .gitpod.Dockerfile tasks: - - init: ./complete/mvnw package -DskipTests - command: java -jar complete/target/*.jar + - init: cd complete && ./mvnw package -DskipTests + command: java -jar target/*.jar