Gradle Configuration

From NovaOrdis Knowledge Base
Revision as of 22:04, 13 October 2020 by Ovidiu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

TO DEPLETE TO

Gradle Properties - Runtime and Project Configuration

Files and Paths

Gradle Home

If Gradle was installed with Homebrew on Mac, then the Gradle home is

/usr/local/Cellar/gradle/<version>/libexec

Gradle User Home

The Gradle user home is the directory indicated by $GRADLE_USER_HOME or $USER/.gradle if the environment variable is not set.

Gradle Project Files

.
|
|- build.gradle
|- settings.gradle
|- gradle.properties
|- .gradle
|       |
|       +-...
|- gradlew
+- gradle
      |
      +-wrapper
           |
           +- ...

Project-Level 'gradle' Directory

It may be created automatically on project initialization with gradle init.

What does it contain? Should I check it into the repository or not?

Project-Level '.gradle' Directory

It may be created automatically on project initialization with gradle init. What does it contain? Should I check it into the repository or not?