mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
21 lines
673 B
XML
21 lines
673 B
XML
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
|
|
<idea-plugin>
|
|
<id>com.jetbrains.psidemo</id>
|
|
<name>PSI Demo</name>
|
|
<version>1.0</version>
|
|
<vendor>JetBrains</vendor>
|
|
|
|
<idea-version since-build="173.0"/>
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
|
<depends>com.intellij.modules.java</depends>
|
|
|
|
<actions>
|
|
<action class="com.intellij.sdk.psi.PsiNavigationDemoAction" id="PsiNavigationDemo" text="PSI Navigation Demo...">
|
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
|
</action>
|
|
</actions>
|
|
|
|
</idea-plugin>
|