compose-lobsters/database/build.gradle.kts
Harsh Shandilya 9d684536a1
database: remove LobstersPost table
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-02-28 20:47:40 +05:30

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)
}