mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 06:44:20 +07:00
These modules and their classes don't have external usages, so they shouldn't be made 'public' at least for now. The 'namespace' is also set to 'jetbrains' for plugins which contain such modules or modules which use them to allow 'internal' visibility to work. GitOrigin-RevId: 198007e49320075dc27faadde6963e98332296a4
24 lines
1006 B
XML
24 lines
1006 B
XML
<idea-plugin visibility="internal">
|
|
<dependencies>
|
|
<module name="intellij.vcs.github"/>
|
|
<plugin id="Git4Idea"/>
|
|
</dependencies>
|
|
|
|
<resource-bundle>messages.GithubBundle</resource-bundle>
|
|
|
|
<actions>
|
|
<action id="Github.Share" class="com.intellij.vcs.github.git.share.GithubShareAction" icon="AllIcons.Vcs.Vendors.Github">
|
|
<add-to-group group-id="GitHub.MainMenu" anchor="before" relative-to-action="Github.Clone"/>
|
|
<add-to-group group-id="Vcs.Import"/>
|
|
<add-to-group group-id="Vcs.ToolbarWidget.ShareProject" anchor="first"/>
|
|
<override-text place="Vcs.Toolbar.Widget"/>
|
|
</action>
|
|
</actions>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<github.ghShareProjectCompatibilityExtension implementation="com.intellij.vcs.github.git.share.GHShareProjectUtilCompatExtension"/>
|
|
<openapi.vcs.changes.ui.shareProjectAction
|
|
implementation="com.intellij.vcs.github.git.share.GithubShareActionProvider"
|
|
order="first"/>
|
|
</extensions>
|
|
</idea-plugin> |