Skip to content

Instantly share code, notes, and snippets.

@stephanetimmermans
Created July 11, 2014 12:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephanetimmermans/8b8ee2089ef9a9191fdc to your computer and use it in GitHub Desktop.
Save stephanetimmermans/8b8ee2089ef9a9191fdc to your computer and use it in GitHub Desktop.
Install Groovy on Ubuntu 14
curl -s get.gvmtool.net | bash
source "$HOME/.gvm/bin/gvm-init.sh"
gvm install groovy
groovy -version
@yarving
Copy link

yarving commented Nov 11, 2015

This script work fine.

@sthum
Copy link

sthum commented Jun 15, 2016

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