TaskManager is not available in Intellij 2025.2

Hi all,

I’ve a problem compiling for IJ 2025.2, looks like the class com.intellij.tasks.TaskManager is missing, even if the marketplace and plugin verification doesn’t raise any error.
In addition I can see the class in the sources, but looks like is missing from the compiled code.

Do I miss some configuration for 2025.2?

Regards,

Mirko

Hi, it seems you need bundledModule(“intellij.platform.tasks“) in build.gradle after changes in

https://youtrack.jetbrains.com/issue/IJPL-189895

And probably com.intellij.modules.tasks dependency in plugin.xml

Thanks a lot for the answer, was my idea too, but because the validation was good, I was not sure about it.

Now I’m curious why plugin validation is Green (or yellow in my case due to deprecation/experimental api).

We must update breaking changes docs. Sorry that we missed it

We added a message about that on our incompatible changes page.

Now I’m curious why plugin validation is Green

This is because the problem happens only during compilation, at runtime the plugin should work fine.

1 Like