mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
This is needed to have an explicit dependency on the backend in it (IJPL-188916), and also to convert XML modules it depend on in content modules as well. The new module is registered in common-ide-modules.xml to include it in all IntelliJ-based IDEs as before. A plugin alias 'com.intellij.modules.spellchecker' is introduced to allow adding dependency on the new module without using a v2 'dependencies' tag. Existing plugins which depend on intellij.spellchecker are updated to have an explicit dependency. The change shouldn't affect external plugins which use classes from 'intellij.spellchecker' because the new module will be automatically added to their dependencies. 'lucene' and 'ai.grazie.spell.gec.engine.local' libraries which were included in the main classloader of the core plugin before due to this module are temporary included in distribution of intellij.ml.llm, intellij.grazie and intellij.searchEverywhereMl plugins. This will be fixed by converting these libraries to content module in next commits. GitOrigin-RevId: aa746fea2f6fd044cf0eaabd6589fce89133eee9
70 lines
4.2 KiB
XML
70 lines
4.2 KiB
XML
<idea-plugin package="com.intellij.jsonpath" allow-bundled-update="true">
|
|
<id>com.intellij.jsonpath</id>
|
|
<name>JSONPath</name>
|
|
<vendor>JetBrains</vendor>
|
|
<category>Languages</category>
|
|
<description><![CDATA[
|
|
<p>Provides JSONPath language for injected code fragments and dedicated Evaluate JSONPath tool window.</p>
|
|
<p>Go to menu <b>Edit - Find - Evaluate JSONPath Expression...</b> to evaluate expressions with a snippet or JSON file.</p>
|
|
]]></description>
|
|
|
|
<dependencies>
|
|
<module name="intellij.json.backend"/>
|
|
<module name="intellij.spellchecker"/>
|
|
</dependencies>
|
|
|
|
<resource-bundle>messages.JsonPathBundle</resource-bundle>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<lang.parserDefinition language="JSONPath" implementationClass="com.intellij.jsonpath.psi.JsonPathParserDefinition"/>
|
|
<lang.braceMatcher language="JSONPath" implementationClass="com.intellij.jsonpath.JsonPathPairedBraceMatcher"/>
|
|
<lang.quoteHandler language="JSONPath" implementationClass="com.intellij.jsonpath.JsonPathQuoteHandler"/>
|
|
<lang.syntaxHighlighterFactory language="JSONPath" implementationClass="com.intellij.jsonpath.JsonPathSyntaxHighlighterFactory"/>
|
|
<annotator language="JSONPath" implementationClass="com.intellij.jsonpath.JsonPathFunctionCallAnnotator"/>
|
|
<colorSettingsPage implementation="com.intellij.jsonpath.JsonPathColorSettingsPage"/>
|
|
<completion.contributor language="JSONPath" order="last" implementationClass="com.intellij.jsonpath.JsonPathCompletionContributor"/>
|
|
<spellchecker.support language="JSONPath" implementationClass="com.intellij.jsonpath.JsonPathSpellcheckerStrategy"/>
|
|
|
|
<lang.elementManipulator forClass="com.intellij.jsonpath.psi.JsonPathId"
|
|
implementationClass="com.intellij.jsonpath.psi.JsonPathIdManipulator"/>
|
|
<lang.elementManipulator forClass="com.intellij.jsonpath.psi.JsonPathStringLiteral"
|
|
implementationClass="com.intellij.jsonpath.psi.JsonPathStringManipulator"/>
|
|
|
|
<localInspection language="JSONPath" shortName="JsonPathUnknownFunction"
|
|
implementationClass="com.intellij.jsonpath.inspections.JsonPathUnknownFunctionInspection"
|
|
bundle="messages.JsonPathBundle" key="inspection.jsonpath.unknown.function"
|
|
groupBundle="messages.JsonPathBundle" groupKey="jsonpath.inspection.group"
|
|
level="WARNING" enabledByDefault="true"/>
|
|
<localInspection language="JSONPath" shortName="JsonPathUnknownOperator"
|
|
implementationClass="com.intellij.jsonpath.inspections.JsonPathUnknownOperatorInspection"
|
|
bundle="messages.JsonPathBundle" key="inspection.jsonpath.unknown.operator"
|
|
groupBundle="messages.JsonPathBundle" groupKey="jsonpath.inspection.group"
|
|
level="WARNING" enabledByDefault="true"/>
|
|
<localInspection language="JSONPath" shortName="JsonPathEvaluateUnknownKey"
|
|
implementationClass="com.intellij.jsonpath.inspections.JsonPathEvaluateUnknownKeyInspection"
|
|
bundle="messages.JsonPathBundle" key="inspection.jsonpath.unknown.key"
|
|
groupBundle="messages.JsonPathBundle" groupKey="jsonpath.inspection.group"
|
|
level="WARNING" enabledByDefault="true"/>
|
|
|
|
<toolWindowAllowlist id="JSONPathEvaluate"/>
|
|
|
|
<intentionAction>
|
|
<language>JSONPath</language>
|
|
<className>com.intellij.jsonpath.ui.JsonPathEvaluateIntentionAction</className>
|
|
<bundleName>messages.JsonBundle</bundleName>
|
|
<categoryKey>json.intention.category.name</categoryKey>
|
|
</intentionAction>
|
|
</extensions>
|
|
|
|
<actions>
|
|
<action id="JsonPathEvaluateAction" class="com.intellij.jsonpath.ui.JsonPathEvaluateAction" icon="AllIcons.FileTypes.Json">
|
|
<add-to-group group-id="FindMenuGroup" anchor="last"/>
|
|
<add-to-group group-id="EditorPopupMenu" anchor="last"/>
|
|
</action>
|
|
|
|
<action id="JsonPathExportEvaluateResultAction" class="com.intellij.jsonpath.ui.JsonPathExportEvaluateResultAction"
|
|
use-shortcut-of="ExportToTextFile" icon="AllIcons.Actions.MenuSaveall">
|
|
<add-to-group group-id="EditorContextBarMenu"/>
|
|
</action>
|
|
</actions>
|
|
</idea-plugin> |