demo | ||
gradle/wrapper | ||
lib | ||
.gitignore | ||
build.gradle.kts | ||
build.sh | ||
gradlew | ||
gradlew.bat | ||
README.md | ||
settings.gradle.kts |
Sample Modules
- Including parent deps
- Spring Boot (2.4.1)
- Spring Dependency Management
- Gradle with Kotlin DSL (6.6.1)
- Kotlin Langauge (1.4.21)
Development
- Clone the modules
git clone https://git.cubetiqs.com/CUBETIQ/sample-modules.git --recurse-submodules --remote-submodules
Add Submodule by using git submodule (Example)
git submodule add https://git.cubetiqs.com/CUBETIQ/gradle-sample-module-example.git
Register module in settings.gradle.kts
or settings.gradle
rootProject.name = "sample-modules"
include("gradle-sample-module-example")
Implementation module in build.gradle.kts
implementation(project(":gradle-sample-module-example"))