Skip to content

Instantly share code, notes, and snippets.

@GlennReilly
Last active October 18, 2017 04:58
Show Gist options
  • Save GlennReilly/a62103324243fe0c8cc254a1a8403280 to your computer and use it in GitHub Desktop.
Save GlennReilly/a62103324243fe0c8cc254a1a8403280 to your computer and use it in GitHub Desktop.
How to find Gradle home
// 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