Install Gradle

  • Before you start installing, make sure gradle is not already installed on your machine
  • You can do this in your Terminal with:
  •  gradle --version 
  • If it is not installed, you will see a message like Unknown command 'gradle'
  • You can install gradle with Homebrew
  •  brew search gradle 
     brew install gradle
     # check if installed with:
     gradle --version 
  • Or you can use SDKMAN!
  •  sdk list gradle
     sdk install gradle # this will install the newest version 

Comments