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.

21 lines
413 B

4 years ago
import org.jetbrains.compose.compose
plugins {
kotlin("jvm") version "1.4.0"
4 years ago
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-dev97")
4 years ago
application
}
repositories {
jcenter()
4 years ago
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
4 years ago
}
dependencies {
implementation(compose.desktop.all)
}
application {
mainClassName = "MainKt"
4 years ago
}