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.
34 lines
756 B
34 lines
756 B
4 years ago
|
import org.jetbrains.compose.compose
|
||
|
|
||
|
plugins {
|
||
3 years ago
|
id("org.jetbrains.intellij") version "1.1.4"
|
||
4 years ago
|
java
|
||
3 years ago
|
kotlin("jvm") version "1.5.21"
|
||
4 years ago
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||
3 years ago
|
id("org.jetbrains.compose") version "1.0.0-alpha1-rc5"
|
||
3 years ago
|
id("idea")
|
||
4 years ago
|
}
|
||
|
|
||
|
group = "org.example"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
3 years ago
|
google()
|
||
4 years ago
|
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(compose.desktop.currentOs)
|
||
3 years ago
|
testImplementation("junit", "junit", "4.12")
|
||
4 years ago
|
}
|
||
|
|
||
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||
|
intellij {
|
||
3 years ago
|
version.set("2021.2")
|
||
4 years ago
|
}
|
||
|
|
||
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||
|
kotlinOptions.jvmTarget = "11"
|
||
|
}
|