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.
20 lines
351 B
20 lines
351 B
4 years ago
|
import org.jetbrains.compose.compose
|
||
|
|
||
|
plugins {
|
||
|
kotlin("jvm") version "1.4.0"
|
||
4 years ago
|
id("org.jetbrains.compose") version "0.1.0-build60"
|
||
4 years ago
|
application
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
maven("https://packages.jetbrains.team/maven/p/ui/dev")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(compose.desktop.all)
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClassName = "MainKt"
|
||
|
}
|