Install Almond
In [ ]:
java -version
In [ ]:
curl -Lo coursier https://git.io/coursier-cli
chmod +x coursier
./coursier launch -v -v almond -- --install
./coursier launch --fork --main-class almond.ScalaKernel almond -- --install
<fork>true</fork>
true
means it will create (fork) a new JVM to run the compiler. This is a bit slower but the isolation is better.false
means it is startign the compiler directly in the JVM you have run maven with, this makes the build less repeatable.
In [ ]:
rm -f coursier