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.
39 lines
1013 B
39 lines
1013 B
import org.jetbrains.compose.compose |
|
|
|
plugins { |
|
id("org.jetbrains.intellij") version "0.6.5" |
|
java |
|
kotlin("jvm") version "1.4.30" |
|
// __LATEST_COMPOSE_RELEASE_VERSION__ |
|
id("org.jetbrains.compose") version "0.3.0-rc1" |
|
} |
|
|
|
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<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") { |
|
changeNotes(""" |
|
Add change notes here.<br> |
|
<em>most HTML tags may be used</em>""") |
|
} |
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { |
|
kotlinOptions.jvmTarget = "11" |
|
}
|
|
|