Files
openide/platform/platform-resources/intellij.platform.resources.iml
Kate Botsman 062c23194e IJPL-160418 Fix tests
A lot of tests started to fail with an error that `KernelService.getInstance` returns null
The problem is that `BackendKernelService` is not registered in these test due to the absent `intellij.platform.kernel.backend` module.

The proposed solution was to add `intellij.platform.monolith.main` dependency to `intellij.platform.resources` which should ensure platform services registration in all tests

GitOrigin-RevId: c3a8c3c51620497b0c8d23d5baeb2ba521df6c8f
2024-09-09 14:33:02 +00:00

13 lines
622 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<module relativePaths="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" type="java-resource" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="intellij.platform.util" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.platform.monolith.main" scope="TEST" />
</component>
</module>