Does MyEclipse have a specialized XML editor? It seems that the XML related plugins might be running into each other. Also, did you restart Eclipse with the -clean option? That might fix it after the plugin.xml hack.
Also, you should still be able to run Abator with a simple Ant script - there's a page in the help that shows how to do it.
I'm looking for patterns of failure to help me find what the problem is. I'll keep looking for the answer.
Jeff Butler
On 2/18/06, mailing-list <[EMAIL PROTECTED]> wrote:
No, I do not have the oXygen XML plugin. MyEclipse 4.1 GA is the only other plugin I have.
Jeff Butler wrote:Do you also have the oXygen XML plugin installed? If not, what other plugins do you have installed?I tested on a fresh Eclipse 3.1.2 install without any other plugins and don't have any problems.Jeff Butler
On 2/18/06, mailing-list <[EMAIL PROTECTED] > wrote:I'm using abator 0.6.1 and Eclipse 3.1.2 and still don't get the "generate artifiacts" pop up menu after editing my plugin.xml file. Anyone get it working correctly? Here is a snipped of what I updated my plugin.xml to:
<extension point="org.eclipse.ui.popupMenus">
<objectContribution
objectClass=" org.eclipse.core.resources.IFile"
nameFilter="*"
id="org.apache.ibatis.abator.ui.contribution1">
<!--
<visibility>
<objectState
value="org.apache.ibatis.abator.ui.abatorConfigurationFileByElement"
name="contentTypeId"/>
</visibility>
-->
<action
enablesFor="1"
label="Generate iBATIS Artifacts"
icon="icons/iBatisLogo.gif"
class="org.apache.ibatis.abator.ui.actions.RunAbatorAction "
menubarPath="additions"
id="org.apache.ibatis.abator.ui.actions.RunAbatorAction">
<selection class="org.eclipse.core.resources.IFile "
name="abatorConfig.xml"/>
</action>
</objectContribution>
</extension>
