mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
IJPL-43794 Refactor: create a separate module for New Users Onboarding
And bundle it only to IDEA for now. Separate module is needed because later we need to add the dependency on `intellij.platform.experiment` to implement the A/B experiment. We can't add this dependency to the existing `intellij.platform.ide.newUiOnboarding` module because `intellij.platform.experiment` is bundled only in IDEA now. So then New UI Onboarding will be present only in IDEA, while it also should be in the other IDEs. GitOrigin-RevId: 3dc524b97d7ef6667e0062db5d76aa1f3b56d12f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
6eb9c44c4d
commit
6ebef3ccd7
1
.idea/modules.xml
generated
1
.idea/modules.xml
generated
@@ -639,6 +639,7 @@
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/ide-core-impl/intellij.platform.ide.core.impl.iml" filepath="$PROJECT_DIR$/platform/ide-core-impl/intellij.platform.ide.core.impl.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/platform-impl/intellij.platform.ide.impl.iml" filepath="$PROJECT_DIR$/platform/platform-impl/intellij.platform.ide.impl.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/new-ui-onboarding/intellij.platform.ide.newUiOnboarding.iml" filepath="$PROJECT_DIR$/platform/new-ui-onboarding/intellij.platform.ide.newUiOnboarding.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml" filepath="$PROJECT_DIR$/platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/ide/progress/intellij.platform.ide.progress.iml" filepath="$PROJECT_DIR$/platform/ide/progress/intellij.platform.ide.progress.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/platform-util-io/intellij.platform.ide.util.io.iml" filepath="$PROJECT_DIR$/platform/platform-util-io/intellij.platform.ide.util.io.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/platform-util-io-impl/intellij.platform.ide.util.io.impl.iml" filepath="$PROJECT_DIR$/platform/platform-util-io-impl/intellij.platform.ide.util.io.impl.iml" />
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
<module name="intellij.platform.coverage.agent"/>
|
||||
<module name="intellij.xml.xmlbeans"/>
|
||||
<module name="intellij.platform.ide.newUiOnboarding"/>
|
||||
<module name="intellij.platform.ide.newUsersOnboarding"/>
|
||||
<module name="intellij.platform.ml.embeddings"/>
|
||||
<module name="intellij.ide.startup.importSettings"/>
|
||||
<module name="intellij.kotlin.onboarding-promoter"/>
|
||||
|
||||
@@ -211,6 +211,7 @@
|
||||
<orderEntry type="module" module-name="intellij.xml.xmlbeans" scope="TEST" />
|
||||
<orderEntry type="module" module-name="intellij.jsonpath" scope="TEST" />
|
||||
<orderEntry type="module" module-name="intellij.platform.ide.newUiOnboarding" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.platform.ide.newUsersOnboarding" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.kotlin.onboarding-promoter" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.execution.process.elevation" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.vcs.github.community" scope="RUNTIME" />
|
||||
|
||||
0
platform/new-users-onboarding/api-dump.txt
Normal file
0
platform/new-users-onboarding/api-dump.txt
Normal 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" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module" module-name="intellij.platform.ide.impl" />
|
||||
<orderEntry type="module" module-name="intellij.platform.ide.newUiOnboarding" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -0,0 +1,5 @@
|
||||
<idea-plugin package="com.intellij.platform.ide.newUsersOnboarding">
|
||||
<dependencies>
|
||||
<module name="intellij.platform.ide.newUiOnboarding"/>
|
||||
</dependencies>
|
||||
</idea-plugin>
|
||||
Reference in New Issue
Block a user