36 lines
No EOL
824 B
Kotlin
36 lines
No EOL
824 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.core)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Analytics - Models */
|
|
api(projects.core.analytics.models)
|
|
|
|
/** Domain */
|
|
implementation(projects.domain.analytics)
|
|
implementation(projects.domain.models)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.coroutines)
|
|
|
|
/** Core shouldn't depend on core, but in case with utils and logging its necessary */
|
|
implementation(projects.core.utils)
|
|
|
|
/** For calculating user id hash */
|
|
implementation(tangemDeps.card.core)
|
|
|
|
/** Tests */
|
|
testImplementation(projects.test.core)
|
|
testRuntimeOnly(deps.test.junit5.engine)
|
|
} |