From c90a238126e25e689b51b0396b4b145a47927567 Mon Sep 17 00:00:00 2001 From: Tom Harada <51029057+p10q@users.noreply.github.com> Date: Fri, 20 Sep 2019 01:45:28 -0700 Subject: [PATCH] Add minor installation note in README.md about mvnw.cmd/mvnw (#299) --- 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.