You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

693 B

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