-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathplugin.xml
More file actions
44 lines (38 loc) · 2.03 KB
/
plugin.xml
File metadata and controls
44 lines (38 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<idea-plugin version="2">
<id>net.servicestack.idea.plugin</id>
<name>ServiceStack</name>
<version>1.0.3</version>
<vendor email="team@servicestack.net" url="https://servicestack.net/">ServiceStack</vendor>
<description><![CDATA[
Integration with ServiceStack Web Services, includes support for Java Add ServiceStack Reference.
]]></description>
<change-notes><![CDATA[
1.0.3 - Added support to detect Maven pom.xml and inject net.servicestack:client dependency for IntelliJ + Maven modules.
1.0.2 - Fix plugin.xml template bug to enable search from IDE.<br>
1.0 - Initial release.<br>
]]>
</change-notes>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="131.0"/>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
<depends>com.intellij.modules.lang</depends>
<depends>org.jetbrains.idea.maven</depends>
<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
<intentionAction>
<className>net.servicestack.idea.UpdateServiceStackReferenceIntention</className>
</intentionAction>
</extensions>
<actions>
<action id="AddServiceStackReference" class="net.servicestack.idea.AddServiceStackReference" text="ServiceStack Reference..." icon="/icons/logo-16.png"
description="Adds a ServiceStack reference to the selected module">
<add-to-group group-id="NewGroup" anchor="after" relative-to-action="NewAction"/>
<keyboard-shortcut keymap="$default" first-keystroke="shift ctrl alt R"/>
</action>
<action id="UpdateServiceStackReference" class="net.servicestack.idea.UpdateServiceStackReference" text="Update ServiceStack Reference" icon="/icons/logo-16.png"
description="Updates the selected ServiceStack reference.">
<add-to-group group-id="ProjectViewPopupMenu" anchor="last"/>
</action>
</actions>
</idea-plugin>