Gradle - Single Project
Table of Contents
About
A single-project has only the root project listed in the output of the gradle projects command, it's a multi-project
Articles Related
Sample
Management
Create
# groovy
gradle init
# kotlin
gradle init --dsl kotlin
File Structure
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
where:
- wrapper and gradlew: Gradle - Wrapper (gradlew)
- settings.gradle is a configuration file
- build.gradle is the build script