Execution API changes in Diana
The Diana plugin migration guide is currently quite silent about this ;)
I'm stuck at providing my implementation of com.intellij.execution.LocatableConfigurationType - it's
registered as an extension for "com.intellij.configurationType" and I can successfully create new
run configurations of this type, but the Run/Debug buttons are grayed out. What's required to
actually run such a configuration now?
Thanks,
Sascha
Please sign in to leave a comment.
I've figured it out: The implementation of com.intellij.execution.configurations.RunConfiguration
needs to actually implement com.intellij.execution.configurations.ModuleRunConfiguration to be
runnable (at least by the standard Run/Debug runners).
Sascha