The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"[SOLVED] HELP : Eclipse shows errors before execution"
ielhassani
Member Posts: 10 Contributor II
Hello,
I bought the White Paper "How to Extend RapidMiner 5.0" and I followed the steps shown in page 11 to create my own Extension. Unfortunately Eclipse shows errors before execution Â
: Project 'RapidMiner_Vega' is missing required source folder: 'src_test'
Help please.
Thank you.
I bought the White Paper "How to Extend RapidMiner 5.0" and I followed the steps shown in page 11 to create my own Extension. Unfortunately Eclipse shows errors before execution Â
: Project 'RapidMiner_Vega' is missing required source folder: 'src_test'
Help please.
Thank you.
0
Answers
did you checkout the RapidMiner sourcecode here: https://rapidminer.svn.sourceforge.net/svnroot/rapidminer/Vega ?
It contains a src_test folder, so does your local version you checked out contain one as well? If not, please checkout the RM Vega project again.
Regards,
Marco
Actually you're right!
Now eclipse shows another error :
The type DriverAdapter must implement the inherited abstract method Driver.getParentLogger() DriverAdapter.java /RapidMiner_Vega/src/com/rapidminer/tools/jdbc line 40
thank you for Help.
the reason here is that you try to compile your Project with JDK 1.7. There has been a change in the interface "Driver" in this version and now it needs this new method.
The solution here is to compile RapidMiner with JDK 1.6 and everthing should work.
Best Nils
Thank you Nils.
I compiled RapidMiner with JDK 1.6 and the error is gone.
Now I have some Warnings (100 of 191 items)... is this normal ? Can I continue my work ?
thank you for Help.
indeed, Warnings are just warnings, so you can ignore them.
Regards,
Marco
SOLVED