I'm attempting to write a plugin for RapidMiner 5.0. I've attempted to take the plugin that I wrote for RapidMiner 4.6, rebuild against the latest rapid miner.jar. When I run, I see my plugin listed under "Help", but not under "New operator".
Here is my operators.xml that worked in 4.6 but not 5.0:
<operators>
<operator
name = "ExperimentalOperator"
class = "com.foo.rapidminer.example.ExperimentalOperator"
description = "my description"
group = "IO.Text.Filter"/>
</operators>
This the the manifest from my plugin:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.1
Created-By: 14.0-b16 (Sun Microsystems Inc.)
Implementation-Vendor: MyVendor
Implementation-Title: MyPlugin
Implementation-URL:
http://www.foo.comImplementation-Version: 1.0
RapidMiner-Version: 5.0
RapidMiner-Type: RapidMiner_Plugin
Is there anything additional that I need to declare? Is there any additional logging/trace that I can enable to see why my operator is not showing up in the menu? Also, is there an updated tutorial for 5.0 that I can refer to ( the latest I could find was for 4.6 ).
Thanks in advance.