forked from Accenture/liferay-portal-eclipse-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
27 lines (25 loc) · 951 Bytes
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
name="Liferay Spring Portlet Wizard"
id="liferay-spring-plugin">
</category>
<wizard
name="Liferay Spring Portlet Plugin Project"
icon="icons/sample.gif"
category="liferay-spring-plugin"
class="com.accenture.liferayspringplugin.wizards.LiferaySpringWizard"
id="com.accenture.liferayspringplugin.wizards.LiferaySpringWizard">
</wizard>
<wizard
category="liferay-spring-plugin"
class="com.accenture.liferayspringplugin.wizards.SpringPortletWizard"
icon="icons/sample.gif"
id="com.accenture.liferayspringplugin.wizards.SpringPortletWizard"
name="Add Spring Portlet to Existing Plugin project">
</wizard>
</extension>
</plugin>