From a2201424fb11e1dc3415bda18e1ab0763732bac0 Mon Sep 17 00:00:00 2001
From: dgelessus <dgelessus@users.noreply.github.com>
Date: Fri, 3 May 2019 12:19:34 +0200
Subject: [PATCH] Update build instructions

Builds should always be done using the Gradle wrapper to avoid version
issues, and the deploy task no longer exists (the standard Gradle
assemble task should be used instead).
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b5f617c..218c163 100644
--- a/README.md
+++ b/README.md
@@ -27,8 +27,8 @@ This derived work is, like SableCC, covered by the GNU Lesser General Public Lic
 Building
 ---
 
-* Clone the repository
-* Run the deploy target using gradle. If you don't have gradle installed, you can use the gradlew wrapper scripts, e.g., under Linux use './gradlew deploy'
+* Clone the repository.
+* Run the `assemble` target using Gradle (`./gradlew assemble` on Linux/macOS/etc., `gradlew.bat assemble` on Windows).
 * The binary is located in the build/libs subdirectory.
 
 Documentation
-- 
GitLab