You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
663 B
25 lines
663 B
4 years ago
|
import org.jetbrains.compose.compose
|
||
|
|
||
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
id("org.jetbrains.compose")
|
||
|
java
|
||
|
application
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(compose.desktop.all)
|
||
|
implementation(project(":common:utils"))
|
||
|
implementation(project(":common:database"))
|
||
|
implementation(project(":common:root"))
|
||
|
implementation(Deps.ArkIvanov.Decompose.decompose)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlin)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlinMain)
|
||
|
implementation(Deps.Badoo.Reaktive.reaktive)
|
||
|
implementation(Deps.Badoo.Reaktive.coroutinesInterop)
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClassName = "example.todo.desktop.MainKt"
|
||
|
}
|