-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare Intellij plugin for publishing
- Loading branch information
1 parent
e7e5b79
commit c5b93e8
Showing
9 changed files
with
211 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,31 @@ | ||
<idea-plugin> | ||
<id>org.jetbrains.compose.desktop.idea.preview</id> | ||
<name>Compose Desktop Preview</name> | ||
<id>org.jetbrains.compose.desktop.ide</id> | ||
<name>Compose for Desktop IDE Support</name> | ||
<vendor>JetBrains</vendor> | ||
<description> | ||
<![CDATA[ | ||
IDE support for developing | ||
<a href="https://www.jetbrains.com/lp/compose/">Compose for Desktop</a> | ||
applications. | ||
The main feature at the moment is IDE preview of composable functions | ||
marked by @Preview annotation. | ||
]]> | ||
|
||
</description> | ||
|
||
<!-- Product and plugin compatibility requirements --> | ||
<!-- https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html --> | ||
<depends>com.intellij.modules.platform</depends> | ||
<depends>com.intellij.modules.java</depends> | ||
<depends>com.intellij.gradle</depends> | ||
<depends>org.jetbrains.kotlin</depends> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<runLineMarkerContributor | ||
language="kotlin" | ||
implementationClass="org.jetbrains.compose.desktop.idea.preview.PreviewRunLineMarkerContributor"/> | ||
implementationClass="org.jetbrains.compose.desktop.ide.preview.PreviewRunLineMarkerContributor"/> | ||
<runConfigurationProducer | ||
implementation="org.jetbrains.compose.desktop.idea.preview.PreviewRunConfigurationProducer"/> | ||
<deadCode implementation="org.jetbrains.compose.desktop.idea.preview.PreviewEntryPoint" /> | ||
implementation="org.jetbrains.compose.desktop.ide.preview.PreviewRunConfigurationProducer"/> | ||
<deadCode implementation="org.jetbrains.compose.desktop.ide.preview.PreviewEntryPoint" /> | ||
</extensions> | ||
</idea-plugin> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.