tangem-app-android-audited/domain/swap/build.gradle.kts
2026-06-04 11:08:20 +04:00

42 lines
No EOL
1,015 B
Kotlin

import org.gradle.kotlin.dsl.projects
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.serialization)
id("configuration")
}
android {
namespace = "com.tangem.domain.swap"
}
dependencies {
/** Domain */
implementation(projects.domain.models)
implementation(projects.domain.express.models)
implementation(projects.domain.swap.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
/** Util */
implementation(projects.core.utils)
implementation(projects.core.datasource)
/** Other */
implementation(deps.arrow.core)
implementation(deps.kotlin.coroutines)
implementation(deps.jodatime)
/** Tests */
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.truth)
testImplementation(deps.test.mockk)
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}