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.kotlin.gradle.dsl.KotlinJvmCompile
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("java")
|
|
|
|
id("org.jetbrains.kotlin.jvm") version "1.4.32"
|
|
|
|
id("org.jetbrains.intellij") version "0.7.2"
|
|
|
|
id("org.jetbrains.changelog") version "1.1.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
fun properties(key: String) = project.findProperty(key).toString()
|
|
|
|
|
|
|
|
group = "org.jetbrains.compose.desktop.ide.preview"
|
|
|
|
version = properties("deploy.version")
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
intellij {
|
|
|
|
pluginName = "Compose Desktop Preview"
|
|
|
|
type = "IC"
|
|
|
|
downloadSources = true
|
|
|
|
updateSinceUntilBuild = true
|
|
|
|
version = "203.7717.56"
|
|
|
|
|
|
|
|
setPlugins(
|
|
|
|
"java",
|
|
|
|
"com.intellij.gradle",
|
|
|
|
"org.jetbrains.kotlin:203-1.4.32-release-IJ7148.5"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
// Set the compatibility versions to 1.8
|
|
|
|
withType<JavaCompile> {
|
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
}
|
|
|
|
withType<KotlinJvmCompile> {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|