|
5 | 5 | */
|
6 | 6 |
|
7 | 7 | import okhttp3.internal.immutableListOf
|
| 8 | +import org.gradle.api.tasks.testing.logging.TestExceptionFormat |
8 | 9 | import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
|
9 | 10 | import org.jetbrains.intellij.platform.gradle.TestFrameworkType
|
10 | 11 | import org.jetbrains.intellij.platform.gradle.models.ProductRelease
|
11 | 12 | import org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask
|
12 | 13 | import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
13 | 14 | import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
|
14 |
| -import org.gradle.api.tasks.testing.logging.TestExceptionFormat |
15 | 15 |
|
16 | 16 | // Specify UTF-8 for all compilations so we avoid Windows-1252.
|
17 | 17 | allprojects {
|
@@ -106,19 +106,21 @@ dependencies {
|
106 | 106 | // Plugin dependency documentation:
|
107 | 107 | // https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#plugins
|
108 | 108 | // https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html#project-setup
|
109 |
| - bundledPlugins(immutableListOf( |
110 |
| - "com.google.tools.ij.aiplugin", |
111 |
| - "com.intellij.java", |
112 |
| - "com.intellij.properties", |
113 |
| - "JUnit", |
114 |
| - "Git4Idea", |
115 |
| - "org.jetbrains.kotlin", |
116 |
| - "org.jetbrains.plugins.gradle", |
117 |
| - "org.jetbrains.plugins.yaml", |
118 |
| - "org.intellij.intelliLang", |
119 |
| - "org.jetbrains.android", |
120 |
| - "com.android.tools.idea.smali" |
121 |
| - )) |
| 109 | + bundledPlugins( |
| 110 | + immutableListOf( |
| 111 | + "com.google.tools.ij.aiplugin", |
| 112 | + "com.intellij.java", |
| 113 | + "com.intellij.properties", |
| 114 | + "JUnit", |
| 115 | + "Git4Idea", |
| 116 | + "org.jetbrains.kotlin", |
| 117 | + "org.jetbrains.plugins.gradle", |
| 118 | + "org.jetbrains.plugins.yaml", |
| 119 | + "org.intellij.intelliLang", |
| 120 | + "org.jetbrains.android", |
| 121 | + "com.android.tools.idea.smali" |
| 122 | + ) |
| 123 | + ) |
122 | 124 | plugin("Dart:$dartPluginVersion")
|
123 | 125 |
|
124 | 126 | if (sinceBuildInput == "243" || sinceBuildInput == "251") {
|
@@ -180,13 +182,7 @@ intellijPlatform {
|
180 | 182 | )
|
181 | 183 | verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
|
182 | 184 | subsystemsToCheck = VerifyPluginTask.Subsystems.ALL
|
183 |
| - // Mute and freeArgs documentation |
184 |
| - // https://github.com/JetBrains/intellij-plugin-verifier/?tab=readme-ov-file#specific-options |
185 |
| - // https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#mutePluginVerifierProblems |
186 |
| - freeArgs = listOf( |
187 |
| - "-mute", |
188 |
| - "TemplateWordInPluginId,ForbiddenPluginIdPrefix,TemplateWordInPluginName" |
189 |
| - ) |
| 185 | + |
190 | 186 | ides {
|
191 | 187 | recommended()
|
192 | 188 | }
|
|
0 commit comments