tangem-app-android-audited/domain/onramp/build.gradle.kts
2025-09-02 15:50:42 +02:00

29 lines
No EOL
731 B
Kotlin

plugins {
alias(deps.plugins.kotlin.jvm)
alias(deps.plugins.kotlin.serialization)
id("configuration")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
/** Core modules */
implementation(projects.core.analytics.models)
api(projects.domain.onramp.models)
api(projects.domain.tokens.models)
api(projects.domain.wallets.models)
api(projects.domain.core)
api(projects.domain.settings)
implementation(deps.kotlin.serialization)
/** Tests */
testImplementation(deps.test.coroutine)
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
}