From 56061f4547c99765cc0374c6e7163284e25003d7 Mon Sep 17 00:00:00 2001 From: nkakouros Date: Mon, 15 Jun 2020 18:02:47 +0200 Subject: [PATCH 1/2] Update README.md - Adds Java minimum version - Fixes paths in command instructions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eedb9c6..b32e1f1 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,8 @@ to simulate attacks on those models. ### Building with the reference backend and running the unit tests +Java version 11 or higher is required. + To compile exampleLang with the reference backend of the MAL compiler and then run the unit tests, execute the following command from the `exampleLang` directory: @@ -125,8 +127,7 @@ do the following: * Enter the directory of the new MAL language project * `cd myLang/` * Remove build scripts - * `rm -rf .buildscript` - * `rm .travis.yml` + * `rm -rf target/` * Update `LICENSE` with a license of your choice * Update copyright notices to reflect your license in * `NOTICE` From b82b6418e0f0bce265bd80b1847d5f828532c9ae Mon Sep 17 00:00:00 2001 From: nkakouros Date: Tue, 16 Jun 2020 16:38:48 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b32e1f1..6e2130f 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ do the following: * Enter the directory of the new MAL language project * `cd myLang/` * Remove build scripts - * `rm -rf target/` + * `rm -rf target/` or `mvn clean` * Update `LICENSE` with a license of your choice * Update copyright notices to reflect your license in * `NOTICE`