Last active
October 18, 2017 04:58
-
-
Save GlennReilly/a62103324243fe0c8cc254a1a8403280 to your computer and use it in GitHub Desktop.
How to find Gradle home
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
// You can write a simple gradle script to print your GRADLE_HOME directory. | |
task getHomeDir << { | |
println gradle.gradleHomeDir | |
} | |
// and name it build.gradle. | |
// Then run it with: | |
gradle getHomeDir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment