Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check version of gradle installed on my Mac?

Tags:

gradle

I installed gradle using homebrew on Mac OS High Sierra. I wanted to check the version and if it's installed successfully on my laptop. I'm not using it for Android Studio.

like image 327
Krishna Dalayi Avatar asked Oct 30 '17 00:10

Krishna Dalayi


People also ask

How do I know which version of Gradle is installed?

In Android Studio, go to File > Project Structure. Then select the "project" tab on the left. Your Gradle version will be displayed here.


1 Answers

To verify gradle version run:

gradle -v or gradle --version

More or less you should get:

------------------------------------------------------------
Gradle 4.0-rc-3
------------------------------------------------------------

Build time:   2017-06-12 15:04:44 UTC
Revision:     78d6b5b1e5cdb3dd4e233eb2f2e2bf721c53ca9e

Groovy:       2.4.11
Ant:          Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM:          1.8.0_121 (Oracle Corporation 25.121-b13)
OS:           Mac OS X 10.12.4 x86_64
like image 165
Opal Avatar answered Sep 20 '22 03:09

Opal