16 lines
No EOL
270 B
Kotlin
16 lines
No EOL
270 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
id("configuration")
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region Domain
|
|
api(projects.domain.core)
|
|
api(projects.domain.models)
|
|
// endregion
|
|
|
|
// region Tests
|
|
testImplementation(projects.test.core)
|
|
// endregion
|
|
} |