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.
|
|
|
import org.jetbrains.compose.compose
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("org.jetbrains.intellij") version "1.3.0"
|
|
|
|
java
|
|
|
|
kotlin("jvm")
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions.jvmTarget = "11"
|
|
|
|
}
|