|
1 | 1 | <idea-plugin> |
2 | | - <id>org.jetbrains.compose.desktop.idea.preview</id> |
3 | | - <name>Compose Desktop Preview</name> |
| 2 | + <id>org.jetbrains.compose.desktop.ide</id> |
| 3 | + <name>Compose for Desktop IDE Support</name> |
4 | 4 | <vendor>JetBrains</vendor> |
| 5 | + <description> |
| 6 | + <![CDATA[ |
| 7 | + IDE support for developing |
| 8 | + <a href="https://www.jetbrains.com/lp/compose/">Compose for Desktop</a> |
| 9 | + applications. |
| 10 | + The main feature at the moment is IDE preview of composable functions |
| 11 | + marked by @Preview annotation. |
| 12 | + ]]> |
| 13 | + |
| 14 | + </description> |
5 | 15 |
|
6 | 16 | <!-- Product and plugin compatibility requirements --> |
7 | 17 | <!-- https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html --> |
8 | 18 | <depends>com.intellij.modules.platform</depends> |
| 19 | + <depends>com.intellij.modules.java</depends> |
9 | 20 | <depends>com.intellij.gradle</depends> |
10 | 21 | <depends>org.jetbrains.kotlin</depends> |
11 | 22 |
|
12 | 23 | <extensions defaultExtensionNs="com.intellij"> |
13 | 24 | <runLineMarkerContributor |
14 | 25 | language="kotlin" |
15 | | - implementationClass="org.jetbrains.compose.desktop.idea.preview.PreviewRunLineMarkerContributor"/> |
| 26 | + implementationClass="org.jetbrains.compose.desktop.ide.preview.PreviewRunLineMarkerContributor"/> |
16 | 27 | <runConfigurationProducer |
17 | | - implementation="org.jetbrains.compose.desktop.idea.preview.PreviewRunConfigurationProducer"/> |
18 | | - <deadCode implementation="org.jetbrains.compose.desktop.idea.preview.PreviewEntryPoint" /> |
| 28 | + implementation="org.jetbrains.compose.desktop.ide.preview.PreviewRunConfigurationProducer"/> |
| 29 | + <deadCode implementation="org.jetbrains.compose.desktop.ide.preview.PreviewEntryPoint" /> |
19 | 30 | </extensions> |
20 | 31 | </idea-plugin> |
0 commit comments