parent
0b768ee073
commit
32b8d4a2d1
@ -1,28 +1,32 @@
|
||||
# Sample Modules
|
||||
- Including parent deps
|
||||
- Spring Boot
|
||||
|
||||
- Spring Boot with Kotlin
|
||||
- Spring Dependency Management
|
||||
- Gradle with Kotlin DSL (6.6.1)
|
||||
- Kotlin Langauge
|
||||
- Gradle with Kotlin DSL
|
||||
|
||||
# Development
|
||||
|
||||
- Clone the modules
|
||||
|
||||
```shell
|
||||
git clone https://git.cubetiqs.com/CUBETIQ/sample-modules.git --recurse-submodules --remote-submodules
|
||||
```
|
||||
|
||||
### Add Submodule by using git submodule (Example)
|
||||
|
||||
```shell
|
||||
git submodule add https://git.cubetiqs.com/CUBETIQ/gradle-sample-module-example.git
|
||||
```
|
||||
|
||||
### Register module in ```settings.gradle.kts``` or ```settings.gradle```
|
||||
|
||||
```gradle
|
||||
rootProject.name = "sample-modules"
|
||||
include("gradle-sample-module-example")
|
||||
```
|
||||
|
||||
### Implementation module in ```build.gradle.kts```
|
||||
|
||||
```gradle
|
||||
implementation(project(":gradle-sample-module-example"))
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
Loading…
Reference in new issue