-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (30 loc) · 932 Bytes
/
plugin.xml
File metadata and controls
31 lines (30 loc) · 932 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!-- plugin information -->
<plugin>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
label="Commit Plugin"
mnemonic="M"
id="org.eclipse.commitplugin.actions.MyMenu">
<command
commandId="EclipsePlugin.command1"
id="sample command"
label="You are running the Software Process Git Commit Plugin!"
mnemonic="S"
style="push">
</command>
</menu>
</menuContribution>
</extension>
<extension
id="commitPlugin"
point="org.eclipse.ui.startup">
<startup
class="org.eclipse.commitplugin.actions.MyListener">
</startup>
</extension>
</plugin>