Files
pkl/pkl-internal-intellij-plugin/src/main/resources/META-INF/plugin.xml
2025-10-31 12:28:03 -07:00

20 lines
690 B
XML

<idea-plugin>
<id>org.pkl.intellij.snippet-test-helper</id>
<name>Pkl Snippet Test Helper</name>
<vendor>Apple Inc. and the Pkl project authors</vendor>
<description><![CDATA[
Automatically opens snippet test output files when input files are opened.
This is an internal plugin that is meant for development on the Pkl project itself.
]]></description>
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.java</depends>
<depends>org.jetbrains.plugins.gradle</depends>
<extensions defaultExtensionNs="com.intellij">
<fileEditorProvider implementation="org.pkl.internal.intellij.SnippetTestEditorProvider"/>
</extensions>
</idea-plugin>