tapanih
(Tapani Honkanen)
1
After upgrading my plugin to 2025.2 EAP, I am faced with an error:
Cannot resolve extension point 'com.intellij.spellchecker.bundledDictionaryProvider' in dependencies
Editor can only find CssBundledDictionaryProvider and CssSpellcheckingStrategy classes from the com.intellij.spellchecker package.
Any solutions?
rhdunn
(Reece Dunn)
3
This took me a while to figure out … in your build.gradle.kts file (or equivalent) add the following in the modules that need the spellchecker module:
dependencies {
intellijPlatform {
bundledModule("intellij.spellchecker")
}
}
I’m not sure why the intellij gradle plugin isn’t picking this up automatically like other bundled modules (vcs, grazie, etc.).
3 Likes
It probably happened because the code has been extracted to a platform module in IJPL-189900
nik
(Nikolay Chashnikov)
5
You’re right, sorry for the trouble. I’ve updated Incompatible API Changes page to mention this and similar changes.
1 Like