intellij-platform-gradle-plugin v2.13.1
V1 plugin descriptor
Running tests against 2026.1 rc
Almost all tests are failing now with 2026.1 rc, because of an unresolved ActionGroup ID.
I don’t know how to fix this. The test passes when I remove the reference from plugin.xml, but that’s not what I want to release.
I also don’t know if it’s a packaging problem of the IDE or a problem of the intellij-platform-gradle-plugin.
Basically the error is “ERROR: ActionGroupStub (bashpro.SendSignal): group with id “XDebugger.ToolWindow.LeftToolbar” isn’t registered”.
The action was apparently moved to intellij.platform.debugger.impl.ui.xml in 2026.1.
I already added bundledModule("intellij.platform.debugger.impl") to the build setup, but this did not fix the problem.
My plugin.xml contains thIs, it refers to “XDebugger.ToolWindow.LeftToolbar” to add a new action to the group:
<group id="bashpro.SendSignal" class="pro.bashsupport.shell.debug.xdebugger.SendSignalActionGroup">
<add-to-group group-id="XDebugger.ToolWindow.LeftToolbar" anchor="after" relative-to-action="Stop"/>
</group>
The full error message:
ERROR: com.intellij.openapi.actionSystem.impl.ActionGroupStub (bashpro.SendSignal): group with id "XDebugger.ToolWindow.LeftToolbar" isn't registered so the action won't be added to it; the action can be invoked via "Find Action" (module=PluginMainDescriptor(name=pro.bashsupport, id=pro.bashsupport, version=261.22158.182, isBundled=true, path=~/self-employment/products/bashsupport-pro/build/resources/test)) [Plugin: pro.bashsupport]
com.intellij.diagnostic.PluginException: com.intellij.openapi.actionSystem.impl.ActionGroupStub (bashpro.SendSignal): group with id "XDebugger.ToolWindow.LeftToolbar" isn't registered so the action won't be added to it; the action can be invoked via "Find Action" (module=PluginMainDescriptor(name=pro.bashsupport, id=pro.bashsupport, version=261.22158.182, isBundled=true, path=~/self-employment/products/bashsupport-pro/build/resources/test)) [Plugin: pro.bashsupport]
at com.intellij.openapi.actionSystem.impl.ActionManagerImplKt.reportActionError(ActionManagerImpl.kt:1723)
at com.intellij.openapi.actionSystem.impl.ActionManagerImplKt.access$reportActionError(ActionManagerImpl.kt:1)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.getParentGroup(ActionManagerImpl.kt:856)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.processAddToGroupNode(ActionManagerImpl.kt:815)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.processGroupElement(ActionManagerImpl.kt:748)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.registerPluginActions(ActionManagerImpl.kt:432)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.doRegisterActions(ActionManagerImpl.kt:297)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.<init>(ActionManagerImpl.kt:198)