RDCT-1444 Add backend module for progresses

This module is going to contain implementation of backend services for progress API.

`com.intellij.platform.experimental.backend` dependency in `.xml` file indicates that the module should not be loaded in frontend-only builds (e.g. frontend split)
The module is going to be loaded in monolith and backend split.

GitOrigin-RevId: adfe37ab2d8f914c422daf02fdd8f71f020a3661
This commit is contained in:
Kate Botsman
2024-08-19 17:16:33 +02:00
committed by intellij-monorepo-bot
parent 35f17aa034
commit 399c412ee6
6 changed files with 24 additions and 0 deletions

1
.idea/modules.xml generated
View File

@@ -711,6 +711,7 @@
<module fileurl="file://$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.iml" filepath="$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.annotations.iml" filepath="$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.annotations.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.tests.iml" filepath="$PROJECT_DIR$/platform/object-serializer/intellij.platform.objectSerializer.tests.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/progress/backend/intellij.platform.progress.backend.iml" filepath="$PROJECT_DIR$/platform/progress/backend/intellij.platform.progress.backend.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/projectModel-api/intellij.platform.projectModel.iml" filepath="$PROJECT_DIR$/platform/projectModel-api/intellij.platform.projectModel.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/projectModel-impl/intellij.platform.projectModel.impl.iml" filepath="$PROJECT_DIR$/platform/projectModel-impl/intellij.platform.projectModel.impl.iml" />
<module fileurl="file://$PROJECT_DIR$/platform/rd-platform-community/intellij.platform.rd.community.iml" filepath="$PROJECT_DIR$/platform/rd-platform-community/intellij.platform.rd.community.iml" />

View File

@@ -8,5 +8,6 @@
<orderEntry type="module" module-name="intellij.platform.main" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.platform.kernel.backend" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.platform.navbar.backend" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.platform.progress.backend" scope="RUNTIME" />
</component>
</module>

View File

@@ -9,6 +9,8 @@
<module name="intellij.platform.rpc.backend"/>
<module name="intellij.platform.kernel.backend"/>
<module name="intellij.platform.progress.backend"/>
<!-- todo navbar is not essential-->
<module name="intellij.platform.navbar"/>
<module name="intellij.platform.navbar.backend"/>

View File

View File

@@ -0,0 +1,14 @@
<?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$/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" packagePrefix="com.intellij.platform.progress.backend" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="kotlin-stdlib" level="project" />
<orderEntry type="library" name="kotlinx-coroutines-core" level="project" />
</component>
</module>

View File

@@ -0,0 +1,6 @@
<idea-plugin package="com.intellij.platform.progress.backend">
<dependencies>
<!--The plugin won't be included in frontend-only builds-->
<plugin id="com.intellij.platform.experimental.backend"/>
</dependencies>
</idea-plugin>