File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,6 @@ plugins {
13
13
alias(libs.plugins.kotlin)
14
14
}
15
15
16
- intellijPlatform {
17
- pluginConfiguration {
18
- name = " PowerShell"
19
- }
20
- }
21
-
22
16
sourceSets {
23
17
main {
24
18
java.srcDir(" src/main/gen-parser" )
@@ -68,6 +62,7 @@ dependencies {
68
62
bundledPlugins(" org.intellij.intelliLang" , " org.jetbrains.plugins.terminal" )
69
63
instrumentationTools()
70
64
testFramework(TestFrameworkType .Bundled )
65
+ pluginVerifier()
71
66
}
72
67
73
68
implementation(libs.bundles.junixsocket)
@@ -92,6 +87,21 @@ dependencies {
92
87
)
93
88
}
94
89
90
+ intellijPlatform {
91
+ pluginConfiguration {
92
+ name = " PowerShell"
93
+ }
94
+ pluginVerification {
95
+ ides {
96
+ recommended()
97
+ }
98
+ freeArgs.addAll(
99
+ " -mute" , " ForbiddenPluginIdPrefix" ,
100
+ " -mute" , " TemplateWordInPluginId"
101
+ )
102
+ }
103
+ }
104
+
95
105
configurations {
96
106
runtimeClasspath {
97
107
// NOTE: Newer versions of these libraries are provided by IntelliJ, so let's exclude them from the dependency set
@@ -227,6 +237,7 @@ tasks {
227
237
228
238
check {
229
239
dependsOn(verifyDistributionSize)
240
+ dependsOn(verifyPlugin)
230
241
}
231
242
232
243
runIde {
You can’t perform that action at this time.
0 commit comments