We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a51ef7d commit 5389435Copy full SHA for 5389435
build.gradle.kts
@@ -1,6 +1,8 @@
1
import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
2
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
3
import org.jetbrains.intellij.platform.gradle.models.ProductRelease
4
+import org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask.VerificationReportsFormats.HTML
5
+import org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask.VerificationReportsFormats.MARKDOWN
6
7
plugins {
8
alias(libs.plugins.gradleIntelliJPlugin) // Gradle IntelliJ Plugin
@@ -102,6 +104,7 @@ intellijPlatform {
102
104
}
103
105
106
pluginVerification {
107
+ verificationReportsFormats = listOf(MARKDOWN, HTML)
108
ides {
109
recommended()
110
0 commit comments