mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-03-02 03:39:24 +00:00
Integration with IntelliJ Plugin Verifier through the Gradle IntelliJ Plugin runPluginVerifier task
This commit is contained in:
committed by
GitHub
parent
14fe3343f0
commit
2de45ab6ce
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user