In the `LATEST-EAP-SNAPSHOT` tests extending `Ligh...
# intellij-plugins
d
In the
LATEST-EAP-SNAPSHOT
tests extending
LightPlatformCodeInsightFixtureTestCase
recently started failing with
Copy code
CompositeException (2 nested):
------------------------------
[0]: java.lang.ClassNotFoundException: com.intellij.stats.sender.SenderComponent
[1]: CompositeException (2 nested):
------------------------------
[0]: CompositeException (4 nested):
------------------------------
[0]: java.lang.ClassNotFoundException: com.android.tools.idea.apk.viewer.ApkFileSystem
[1]: cannot create class "com.intellij.openapi.actionSystem.DefaultActionGroup" [Plugin: com.intellij]
[2]: Unknown macro: $ROOT_CONFIG$ in storage file spec: $ROOT_CONFIG$
[3]: java.lang.ClassNotFoundException: com.android.tools.idea.apk.viewer.ApkFileSystem
I don’t think my project depends on
SenderComponent
or
ApkFileSystem
. Does anyone know why this might happen?
b
LATEST-EAP-SNAPSHOT
is pretty flaky,
gradle-intellij-plugin
should probably use a more stable channel by default @zolotov
d
Oh, if it’s a temporary thing, then nevermind. I’m running build with
LATEST-EAP-SNAPSHOT
mainly to make sure plugin is compatible with new APIs (and it’s been quite stable for this purpose so far).
Now
LightPlatformCodeInsightFixtureTestCase
has been replaced with
BasePlatformTestCase
which fails with
com.intellij.ide.plugins.PluginManagerCore$EssentialPluginMissingException: Missing essential plugins: com.intellij.java
😞