From 033ee5b69d2ef6ccacbca6a2fcc0830043a7f407 Mon Sep 17 00:00:00 2001 From: Tom Harada Date: Thu, 19 Sep 2019 20:22:25 +0000 Subject: [PATCH] Add minor installation note in README.md about mvnw.cmd/mvnw --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eb97a9bed..dd57cfcb3 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,17 @@ The Java Debug Server is the bridge between VSCode and JVM. The implementation i - com.microsoft.java.debug.core - the core logic of the debug server - com.microsoft.java.debug.plugin - wraps the debug server into an Eclipse plugin to work with Eclipse JDT Language Server +## Installation + +### Windows: +``` +mvnw.cmd clean install +``` +### Linux and macOS: +``` +./mvnw clean install +``` + License ------- -EPL 1.0, See [LICENSE](LICENSE.txt) file. \ No newline at end of file +EPL 1.0, See [LICENSE](LICENSE.txt) file.