import org.jetbrains.compose.compose plugins { id("org.jetbrains.intellij") version "0.6.5" java kotlin("jvm") version "1.4.21" id("org.jetbrains.compose") version "0.3.0-build139" } group = "org.example" version = "1.0-SNAPSHOT" repositories { jcenter() mavenCentral() maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") } } dependencies { implementation(kotlin("stdlib")) implementation("org.jetbrains.compose.material:material:") implementation(compose.desktop.currentOs) testCompile("junit", "junit", "4.12") } // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { version = "2020.3.1" } tasks.getByName("patchPluginXml") { changeNotes(""" Add change notes here.
most HTML tags may be used""") } tasks.withType { kotlinOptions.jvmTarget = "11" }