mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 19:07:02 +05:30
11 lines
272 B
Kotlin
11 lines
272 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.squareup.sqldelight")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
}
|