From e90c50d170cb6afe84a4b10dbbee8bc15e5890a5 Mon Sep 17 00:00:00 2001 From: zax71 Date: Sat, 18 Feb 2023 19:09:00 +0000 Subject: [PATCH] Add Caching to GitHub actions and update README.md to reflect Gradle --- .github/workflows/build.yml | 1 + README.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b108ecb2..98928481 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,7 @@ jobs: with: java-version: 11 distribution: 'adopt' + cache: gradle - name: Build with Gradle run: gradlew build diff --git a/README.md b/README.md index f163c5e6..a884097a 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ Now it's time to create your very own Multiverse server, do check out our [Wiki] Building ======== -Simply build the source with maven: +Simply build the source with Gradle: ``` -$ mvn install +./gradlew build ``` More details are available on the [build instructions wiki page](https://github.com/Multiverse/Multiverse-Core/wiki/Building).