Junhyung
Junhyung

Reputation: 125

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?

Upvotes: 2

Views: 2941

Answers (1)

Junhyung
Junhyung

Reputation: 125

ah!

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

Upvotes: 5

Related Questions