mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
To run a product which uses the module-based loader using the same configuration of classloaders and plugins as in production (RDCT-1194), we need to have dependencies of IntellijLoader only in the original application classpath. This means that we cannot specify some aggregating *.main module in the run configuration, and therefore the IDE won't be able to compile the necessary modules before starting the run configuration. As a workaround, 'Build Project' can be specified as a 'Before launch' step, but compilation of the whole project may take a lot of time. This commit introduces IntellijDevLauncher, which uses BuildHttpRequestHandler to trigger compilation of necessary modules from the process. GitOrigin-RevId: f355c32daba1989b97a8d3df7216cc2233f28579
16 lines
865 B
XML
16 lines
865 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<module 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" isTestSource="false" packagePrefix="com.intellij.tools.devLauncher" />
|
|
</content>
|
|
<orderEntry type="inheritedJdk" />
|
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
<orderEntry type="module" module-name="intellij.platform.runtime.loader" />
|
|
<orderEntry type="module" module-name="intellij.platform.runtime.repository" />
|
|
<orderEntry type="module" module-name="intellij.platform.runtime.product" />
|
|
<orderEntry type="library" name="jetbrains-annotations" level="project" />
|
|
<orderEntry type="library" name="kotlin-stdlib" level="project" />
|
|
</component>
|
|
</module> |