Go to file
Sambo Chea 32b8d4a2d1
Updated the sample gradle modules
2022-07-09 10:42:05 +07:00
gradle/wrapper Updated the sample gradle modules 2022-07-09 10:42:05 +07:00
.gitignore add and init the sample modules 2020-11-22 19:21:56 +07:00
build.gradle.kts Updated the sample gradle modules 2022-07-09 10:42:05 +07:00
gradlew add and init the sample modules 2020-11-22 19:21:56 +07:00
gradlew.bat add and init the sample modules 2020-11-22 19:21:56 +07:00
README.md Updated the sample gradle modules 2022-07-09 10:42:05 +07:00
settings.gradle.kts add and init the sample modules 2020-11-22 19:21:56 +07:00

Sample Modules

  • Spring Boot with Kotlin
  • Spring Dependency Management
  • Gradle with Kotlin DSL

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"))