Skip to content

Commit d37d2f9

Browse files
committed
fix: Mute TemplateWordInPluginName
1 parent 470391c commit d37d2f9

6 files changed

+11
-62
lines changed

.run/Run IDE for UI Tests.run.xml

-25
This file was deleted.

.run/Run Plugin.run.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<option name="executionName" />
66
<option name="externalProjectPath" value="$PROJECT_DIR$" />
77
<option name="externalSystemIdString" value="GRADLE" />
8-
<option name="scriptParameters" value="--stacktrace" />
8+
<option name="scriptParameters" value="" />
99
<option name="taskDescriptions">
1010
<list />
1111
</option>
@@ -19,7 +19,6 @@
1919
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
2020
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
2121
<DebugAllEnabled>false</DebugAllEnabled>
22-
<ForceTestExec>false</ForceTestExec>
2322
<method v="2" />
2423
</configuration>
2524
</component>

.run/Run Qodana.run.xml

-30
This file was deleted.

.run/Run Tests.run.xml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
2020
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
2121
<DebugAllEnabled>false</DebugAllEnabled>
22+
<RunAsTest>true</RunAsTest>
2223
<method v="2" />
2324
</configuration>
2425
</component>

.run/Run Verifications.run.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@
1111
</option>
1212
<option name="taskNames">
1313
<list>
14-
<option value="runPluginVerifier" />
14+
<option value="verifyPlugin" />
1515
</list>
1616
</option>
1717
<option name="vmOptions" value="" />
1818
</ExternalSystemSettings>
1919
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
2020
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
2121
<DebugAllEnabled>false</DebugAllEnabled>
22-
<method v="2">
23-
<option name="Gradle.BeforeRunTask" enabled="true" tasks="clean" externalProjectPath="$PROJECT_DIR$" vmOptions="" scriptParameters="" />
24-
</method>
22+
<RunAsTest>false</RunAsTest>
23+
<method v="2" />
2524
</configuration>
2625
</component>

build.gradle.kts

+6-1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ intellijPlatform {
8888
}
8989
}
9090

91+
pluginVerification {
92+
freeArgs = listOf("-mute", "TemplateWordInPluginName")
93+
}
94+
9195
signing {
9296
certificateChain = providers.environmentVariable("CERTIFICATE_CHAIN")
9397
privateKey = providers.environmentVariable("PRIVATE_KEY")
@@ -99,7 +103,8 @@ intellijPlatform {
99103
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
100104
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
101105
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
102-
channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
106+
channels = providers.gradleProperty("pluginVersion")
107+
.map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
103108
}
104109

105110
pluginVerification {

0 commit comments

Comments
 (0)