How to mute TemplateWordInPluginId in plugin verifier

The verifier prints:

Invalid plugin structure detected
The Plugin Verifier determined that the provided plugin artifact does not have a valid plugin structure. This may indicate missing plugin.xml, incorrect JAR structure, or other structural issues.
The following files specified for the verification are not valid plugins:
G:\TPH\toolbox\build\distributions\toolbox-3.18.6.zip
Plugin problems:
Invalid plugin descriptor ‘plugin.xml’. The plugin ID ‘de.sist.intellij.toolbox’ should not include the word ‘intellij’.
This plugin problem has been reported since 2024-03-26. If the plugin was previously uploaded to the JetBrains Marketplace, it can be suppressed using the -mute TemplateWordInPluginId command-line switch.

I cannot update the ID and it’s hosted in a custom plugin repository.

How do I provide the mentioned command-line switch when running the task verifyPlugin?

Anybody? I still have this problem.

As per docs, use freeArgs option. Remember to provide arguments as a list of words. Space-separated args need to be split into list elements.

pluginVerification {
    // ...
    freeArgs = listOf(
      "-mute",
      "TemplateWordInPluginId,ForbiddenPluginIdPrefix"
    )

Thanks! I searched for that specific warning’s ID but didn’t find anything, didn’t think to look for something more general. Perhaps the output from the plugin could link to that?