Go to file
Sambo Chea 455b916720 Removed ds store 2021-02-18 21:59:53 +07:00
customer-api Add customer api module for demo 2021-01-28 13:22:46 +07:00
demo Add login api sample for oauth resource server 2021-01-28 15:49:20 +07:00
gradle/wrapper add and init the sample modules 2020-11-22 19:21:56 +07:00
lib Add sample func 2021-01-26 13:28:23 +07:00
login-api Add login api sample for oauth resource server 2021-01-28 15:49:20 +07:00
.gitignore Removed ds store 2021-02-18 21:59:53 +07:00
build.gradle.kts Add login api sample for oauth resource server 2021-01-28 15:49:20 +07:00
build.sh Add build script 2021-01-26 13:21:23 +07:00
clean.sh Add clean script 2021-01-26 13:41:57 +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 Fixed and changed the readme 2021-01-14 17:26:26 +07:00
settings.gradle.kts Add login api sample for oauth resource server 2021-01-28 15:49:20 +07:00

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