Search code examples
gradlegradle-kotlin-dsl

adding another module to dependencies using Kotlin dsl build script


in groovy build script,

dependencies {
    implementation project(':nameless-core')
}

we can add another modules at same project to dependencies. is kotlin dsl build script can?


Solution

  • ah!

    dependencies {
        implementation(project(":nameless-core"))
    }