diff --git a/readme.md b/readme.md index 2e37353..dc5fa12 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,8 @@ Usage * Checkout the project * In project directory invoke `mvn clean package`. In target directory `scala-to-java.jar` will be created -* Run application with `java -jar target/scala-to-java.jar` +* Run application with `java -jar target/scala-to-java.jar --slim`. +Optional `--slim` flag removes some boilerplate from the output * Type any scala code, for example `println("hello, world")` and finish with `END` character (`Ctrl-D`) @@ -21,7 +22,8 @@ Download --- Just in case you don't want to bother yourself with building -the project, I already [have built it for you](https://github.com/Aivean/scala-to-java/releases/download/1.0/scala-to-java.jar). +the project, I already [have built it for you](https://github.com/Aivean/scala-to-java/releases/download/v1.0.2/scala-to-java.jar). +Please note that *Java 8* is required to run this tool. Source highlighting and more @@ -33,7 +35,7 @@ process. My setup: ```sh -alias scala-to-java='java -jar ~/.scala-to-java.jar | pv -W | pygmentize -f 256 -l java -O style=monokai' +alias scala-to-java='java -jar ~/.scala-to-java.jar --slim | pv -W | pygmentize -f 256 -l java -O style=monokai' ```