frtncr / kotlin-gradle-multi-module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kotlin-gradle-multi-module

I took this video as a guideline.

Parent module: gradle-multi-module Child modules:

  • first-module (in which there is a dependency to second-module)
  • second-module
❯ tree gradle-multi-module -I test -I gradle

gradle-multi-module
├── README.md
├── build.gradle.kts
├── first-module
│   ├── build.gradle.kts
│   └── src
│       └── main
│           ├── java
│           ├── kotlin
│           │   └── Sample.kt
│           └── resources
├── gradle.properties
├── gradlew
├── gradlew.bat
├── second-module
│   ├── build.gradle.kts
│   └── src
│       └── main
│           ├── java
│           ├── kotlin
│           │   └── MathOperation.kt
│           └── resources
├── settings.gradle.kts
└── src
    └── main
        ├── java
        ├── kotlin
        └── resources

In case you'd need to build any module without building the whole project use the following: (to see the behind the scene add --info)

./gradlew :first-module:build --info

About


Languages

Language:Kotlin 100.0%