|
|
|
plugins {
|
|
|
|
id("org.jetbrains.intellij") version "1.17.2"
|
|
|
|
java
|
|
|
|
kotlin("jvm")
|
|
|
|
kotlin("plugin.compose")
|
|
|
|
id("org.jetbrains.compose")
|
|
|
|
id("idea")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "org.example"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(compose.desktop.currentOs)
|
|
|
|
testImplementation("junit", "junit", "4.12")
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
|
|
intellij {
|
|
|
|
version.set("2021.3")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(11))
|
|
|
|
}
|
|
|
|
}
|