Integration with IntelliJ Plugin Verifier through the Gradle IntelliJ Plugin runPluginVerifier task

This commit is contained in:
Jakub Chrzanowski
2020-10-29 20:41:47 +01:00
committed by GitHub
parent 14fe3343f0
commit 2de45ab6ce
5 changed files with 42 additions and 25 deletions

View File

@@ -9,7 +9,7 @@ plugins {
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.4.10"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "0.5.1"
id("org.jetbrains.intellij") version "0.6.1"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "0.6.2"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
@@ -26,6 +26,7 @@ val pluginName_: String by project
val pluginVersion: String by project
val pluginSinceBuild: String by project
val pluginUntilBuild: String by project
val pluginVerifierIdeVersions: String by project
val platformType: String by project
val platformVersion: String by project
@@ -114,6 +115,10 @@ tasks {
)
}
runPluginVerifier {
ideVersions(pluginVerifierIdeVersions)
}
publishPlugin {
dependsOn("patchChangelog")
token(System.getenv("PUBLISH_TOKEN"))