-
Konstantinos Giannoutakis authored
Having created a new Persona project with the wizzard plugin, the developer can build his project (create a Maven artifact and upload it to the local repository). TODO: 1) Create automatically the appropriate run configuration file after a success build. 2) Run the created project over Persona middleware (run the created configuration file)
Konstantinos Giannoutakis authoredHaving created a new Persona project with the wizzard plugin, the developer can build his project (create a Maven artifact and upload it to the local repository). TODO: 1) Create automatically the appropriate run configuration file after a success build. 2) Run the created project over Persona middleware (run the created configuration file)
plugin.xml 1005 B
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="Sample Action Set"
visible="true"
id="org.universaal.tools.buildServiceApplication.actionSet">
<menu
label="universAAL"
id="sampleMenu">
<separator
name="sampleGroup">
</separator>
</menu>
<action
label="&Build Persona Service"
icon="icons/sample.gif"
class="org.universaal.tools.buildserviceapplication.actions.SampleAction"
tooltip="Hello, Eclipse world"
menubarPath="sampleMenu/sampleGroup"
toolbarPath="sampleGroup"
id="org.universaal.tools.buildserviceapplication.actions.SampleAction">
</action>
</actionSet>
</extension>
</plugin>