Files
openide/plugins/remote-control/resources/META-INF/plugin.xml
Dmitry Jemerov fc4c5f36ce Extract REST API endpoints /file, /setting and /openProjectSet to a non-bundled plugin
GitOrigin-RevId: 43773f5f0008bd592dd4f81c6c6c61ad064d9a56
2022-07-12 12:43:32 +00:00

17 lines
622 B
XML

<idea-plugin>
<id>com.intellij.remoteControl</id>
<name>IDE Remote Control</name>
<description>
Allows opening projects, files and settings through the REST API of the built-in Web server.
</description>
<vendor>JetBrains</vendor>
<depends>com.intellij.modules.lang</depends>
<extensions defaultExtensionNs="com.intellij">
<httpRequestHandler implementation="org.jetbrains.ide.OpenFileHttpService"/>
<httpRequestHandler implementation="org.jetbrains.ide.OpenSettingsService"/>
<httpRequestHandler implementation="org.jetbrains.ide.ProjectSetRequestHandler"/>
</extensions>
</idea-plugin>