Skip to content

Instantly share code, notes, and snippets.

@olonho
Created August 21, 2020 12:07
Show Gist options
  • Save olonho/e48752d2d28389acb1dbd44ce0fcae1e to your computer and use it in GitHub Desktop.
Save olonho/e48752d2d28389acb1dbd44ce0fcae1e to your computer and use it in GitHub Desktop.
import org.jetbrains.compose.compose
plugins {
kotlin("jvm") version "1.4.0"
id("org.jetbrains.compose") version "0.1.0-demo3"
application
}
repositories {
jcenter()
maven("https://packages.jetbrains.team/maven/p/ui/dev")
}
dependencies {
implementation(compose.desktop.all)
}
application {
mainClassName = "myapp.MainKt"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment