Created
July 11, 2014 12:31
-
-
Save stephanetimmermans/8b8ee2089ef9a9191fdc to your computer and use it in GitHub Desktop.
Install Groovy on Ubuntu 14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s get.gvmtool.net | bash | |
source "$HOME/.gvm/bin/gvm-init.sh" | |
gvm install groovy | |
groovy -version |
Thanks.
GVM-Tool is now SDKMAN. The script the install groovy is now:
curl -s get.sdkman.io | bash && \
source "$HOME/.sdkman/bin/sdkman-init.sh" && \
sdk install groovy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script work fine.