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.
 
 
 
 

17 lines
374 B

import org.jetbrains.compose.compose
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.intellij")
id("org.jetbrains.compose")
}
jvmTarget("11")
dependencies {
compileOnly(compose.desktop.currentOs)
}
intellijPlugin(group = "org.jetbrains.compose.intellij.platform.sample.base") {
plugins.set(listOf(project(":compose-intellij-platform")))
}