A program to recognize and reward our most engaged community members
<property name="extension.groupProperties" value="/com/rapidminer/resources/groupsSampleExtension.properties" />
#some kind of light bluegroup.SampleGroupe.color = #CCEEFF#darker version of operator colorio.com.rapidminer.streaming.ioobject.SampleIOObject.color = #4DC3FF
<project name="RapidMiner_Plugin_Tutorial_Vega"> <description>Build file for the RapidMiner Tutorial extension</description> <property name="rm.dir" location="../RapidMiner_Unuk" /> <property name="build.build" location="build" /> <property name="build.resources" location="resources" /> <property name="build.lib" location="lib" /> <property name="check.sources" location = "src" /> <property name="javadoc.targetDir" location="javadoc" /> <property name="extension.name" value="Tutorial Extension" /> <property name="extension.name.long" value="RapidMiner Tutorial Extension" /> <property name="extension.namespace" value="tutorial" /> <property name="extension.vendor" value="rapid-i" /> <property name="extension.admin" value="Sebastian Land" /> <property name="extension.url" value="www.rapid-i.com" /> <property name="extension.needsVersion" value="5.0" /> <property name="extension.dependencies" value="" /> <property name="extension.initClass" value="com.rapidminer.PluginInitTutorial" /> <property name="extension.objectDefinition" value="/com/rapidminer/resources/ioobjectsTutorial.xml" /> <property name="extension.operatorDefinition" value="/com/rapidminer/resources/OperatorsTutorial.xml" /> <property name="extension.parseRuleDefinition" value="/com/rapidminer/resources/parserulesTutorial.xml" /> <property name="extension.groupProperties" value="/com/rapidminer/resources/groupsTutorial.properties" /> <property name="extension.errorDescription" value="/com/rapidminer/resources/i18n/ErrorsTutorial.properties" /> <property name="extension.userErrors" value="/com/rapidminer/resources/i18n/UserErrorMessagesTutorial.properties" /> <property name="extension.guiDescription" value="/com/rapidminer/resources/i18n/GUITutorial.properties" /> <!-- Src files --> <path id="build.sources.path"> <dirset dir="src"> <include name="**" /> </dirset> </path> <fileset dir="src" id="build.sources"> <include name="**/*.java" /> </fileset> <fileset id="build.dependentExtensions" dir=".."> </fileset> <import file="${rm.dir}/build_extension.xml" /></project>
<?xml version="1.0" encoding="UTF-8" standalone="no"?><operators name="tutorial" version="5.0" docbundle="com/rapidminer/resources/i18n/OperatorsDocTutorial"> <group key=""> <group key="ClusterEvaluator"> <operator> <key>FisherEvaluator</key> <class>com.rapidminer.operator.FisherEvaluator </class> </operator> </group> </group></operators>
<project name="RapidMiner_Plugin_Tutorial_Vega" default="install">
install: [move] Moving 1 file to C:\Users\nwoehler\workspace\RapidMiner_Unuk\lib\pluginsBUILD SUCCESSFULTotal time: 3 seconds
BUILD FAILEDE:\eclipse\WS_new\RapidMiner_Unuk\build_extension.xml:129: The following error occurred while executing this line:E:\eclipse\WS_new\RapidMiner_Unuk\build_extension.xml:181: The following error occurred while executing this line:E:\eclipse\WS_new\RapidMiner_Unuk\build_extension.xml:186: The following error occurred while executing this line:Error reading project file E:\eclipse\WS_new\.metadata\.lock: The process cannot access the file because another process has locked a portion of the fileTotal time: 4 seconds
<fileset id="build.dependentExtensions" dir=".."> </fileset>
<fileset id="build.dependentExtensions" dir=".."> <exclude name="**/*" /> </fileset>
Marco Boeck wrote:Hi,I just tried the tutorial project myself again, and it worked like a charm. Please follow these instructions to the letter: Make sure your RapidMiner_Unuk project in Eclipse is up to date. I did my test with the latest development version from SVN.Rename the extension project you are working with to something else and then close it in Eclipse.In Eclipse, select "File" - "Import..." - select "Existing Projects into Workspace" - click "Next" - select "Select archive file" - choose the "RapidMiner_Extension_Tutorial.zip" fileNow open the "build.xml" file in the base dir of the new project and replace '<property name="rm.dir" location="../RapidMiner_Vega" />' in line 4 with '<property name="rm.dir" location="../RapidMiner_Unuk" />'Change the first line in the same file from '<project name="RapidMiner_Plugin_Tutorial_Vega">' to '<project name="RapidMiner_Plugin_Tutorial_Unuk">'. Save the file.Drag the "build.xml" into the Eclipse Ant view. Expand the entry for "RapidMiner_Plugin_Tutorial_Unuk" and doubleclick "install".Now run RapidMiner_Unuk from your workspace. There should be a new menu item in the main menu (next to File, Edit, Process, Tools, View, Help) named "Tutorial". After you have done this, you can re-add your existing code into this new project, and it should work just fine.Regards,Marco
Marco Boeck wrote:Hi,for the time being, add <property name="skip.documentation" value="true" /> to your local build.xml file for RapidMiner. After you have done that it should work just fine.Regards,Marco