Gradle Files Layout: Difference between revisions
Jump to navigation
Jump to search
Line 33: | Line 33: | ||
└── src | └── src | ||
├── main | ├── main | ||
│ ├── java | |||
│ ├── bash | |||
│ ├── groovy | |||
│ ├── helm | |||
│ └── resources | |||
└── test | └── test | ||
├── java | |||
├── bash | |||
├── groovy | |||
├── helm | |||
└── resources | |||
=User Home Directory Files= | =User Home Directory Files= |
Revision as of 03:30, 26 March 2021
External
Internal
/ ├── usr/local/bin │ └── gradle │ ├── /Users/someuser │ └── .gradle │ ├── gradle.properties │ └── caches │ └── /projects └── someproject ├── build.gradle ├── settings.gradle ├── gradlew ├── gradlew.bat ├── .gradle │ ├── 6.5 │ ├── buildOutputCleanup │ ├── checksums │ └── vcs-1 ├── gradle │ └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── build │ └── src ├── main │ ├── java │ ├── bash │ ├── groovy │ ├── helm │ └── resources └── test ├── java ├── bash ├── groovy ├── helm └── resources
User Home Directory Files
.gradle
caches
Project Files
.gradle
The directory contains various project-scoped caches generated by Gradle.
gradle
This directory contains the JAR file and configuration for Gradle wrapper. To tie a specific Gradle version to the project, it is reasonable to check in the gradle directory and its content into the source repository.