JetBrains_intellij-platform.../src/main/resources/META-INF/plugin.xml
Yuriy Artamonov 443883d7e4 Vendor of the plugin should not be JetBrains
This is error-prone and might lead to plugins submitted on behalf of JetBrains by 3rd-party developers
2025-08-10 15:10:04 +02:00

20 lines
841 B
XML

<idea-plugin>
<id>org.jetbrains.plugins.compose.template</id>
<name>Compose Template Example</name>
<vendor url="https://www.yourcompany.com">YourCompany</vendor>
<dependencies>
<module name="intellij.libraries.skiko"></module>
<module name="intellij.libraries.compose.foundation.desktop"></module>
<module name="intellij.platform.jewel.foundation"></module>
<module name="intellij.platform.jewel.ui"></module>
<module name="intellij.platform.jewel.ideLafBridge"></module>
</dependencies>
<resource-bundle>messages.ComposeTemplate</resource-bundle>
<extensions defaultExtensionNs="com.intellij">
<toolWindow factoryClass="org.jetbrains.plugins.template.toolWindow.ComposeSamplesToolWindowFactory" id="ComposeSamplesToolWindow"/>
</extensions>
</idea-plugin>