Gradle IntelliJ Plugin 1.0 (#133)

Gradle IntelliJ Plugin 1.0
pull/135/head
Jakub Chrzanowski 3 years ago committed by GitHub
parent fe0cefbb47
commit a85d8cd6ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,4 @@
import io.gitlab.arturbosch.detekt.Detekt import io.gitlab.arturbosch.detekt.Detekt
import org.jetbrains.changelog.closure
import org.jetbrains.changelog.markdownToHTML import org.jetbrains.changelog.markdownToHTML
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
@ -11,7 +10,7 @@ plugins {
// Kotlin support // Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.5.10" id("org.jetbrains.kotlin.jvm") version "1.5.10"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin // gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "0.7.3" id("org.jetbrains.intellij") version "1.0"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin // gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "1.1.2" id("org.jetbrains.changelog") version "1.1.2"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html // detekt linter - read more: https://detekt.github.io/detekt/gradle.html
@ -34,14 +33,14 @@ dependencies {
// Configure gradle-intellij-plugin plugin. // Configure gradle-intellij-plugin plugin.
// Read more: https://github.com/JetBrains/gradle-intellij-plugin // Read more: https://github.com/JetBrains/gradle-intellij-plugin
intellij { intellij {
pluginName = properties("pluginName") pluginName.set(properties("pluginName"))
version = properties("platformVersion") version.set(properties("platformVersion"))
type = properties("platformType") type.set(properties("platformType"))
downloadSources = properties("platformDownloadSources").toBoolean() downloadSources.set(properties("platformDownloadSources").toBoolean())
updateSinceUntilBuild = true updateSinceUntilBuild.set(true)
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file. // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
setPlugins(*properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty).toTypedArray()) plugins.set(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
} }
// Configure gradle-changelog-plugin plugin. // Configure gradle-changelog-plugin plugin.
@ -79,43 +78,37 @@ tasks {
} }
patchPluginXml { patchPluginXml {
version(properties("pluginVersion")) version.set(properties("pluginVersion"))
sinceBuild(properties("pluginSinceBuild")) sinceBuild.set(properties("pluginSinceBuild"))
untilBuild(properties("pluginUntilBuild")) untilBuild.set(properties("pluginUntilBuild"))
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest // Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
pluginDescription( pluginDescription.set(
closure { File(projectDir, "README.md").readText().lines().run {
File(projectDir, "README.md").readText().lines().run { val start = "<!-- Plugin description -->"
val start = "<!-- Plugin description -->" val end = "<!-- Plugin description end -->"
val end = "<!-- Plugin description end -->"
if (!containsAll(listOf(start, end))) {
if (!containsAll(listOf(start, end))) { throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
throw GradleException("Plugin description section not found in README.md:\n$start ... $end") }
} subList(indexOf(start) + 1, indexOf(end))
subList(indexOf(start) + 1, indexOf(end)) }.joinToString("\n").run { markdownToHTML(this) }
}.joinToString("\n").run { markdownToHTML(this) }
}
) )
// Get the latest available change notes from the changelog file // Get the latest available change notes from the changelog file
changeNotes( changeNotes.set(provider { changelog.getLatest().toHTML() })
closure {
changelog.getLatest().toHTML()
}
)
} }
runPluginVerifier { runPluginVerifier {
ideVersions(properties("pluginVerifierIdeVersions")) ideVersions.set(properties("pluginVerifierIdeVersions").split(',').map(String::trim).filter(String::isNotEmpty))
} }
publishPlugin { publishPlugin {
dependsOn("patchChangelog") dependsOn("patchChangelog")
token(System.getenv("PUBLISH_TOKEN")) token.set(System.getenv("PUBLISH_TOKEN"))
// pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels(properties("pluginVersion").split('-').getOrElse(1) { "default" }.split('.').first()) channels.set(listOf(properties("pluginVersion").split('-').getOrElse(1) { "default" }.split('.').first()))
} }
} }

Loading…
Cancel
Save