I am trying to use the ant build script which was included with the How To Extend RapidMiner tutorial. I get errors such as these:
[javac] C:\workspace\RMExtension\src\com\rapidminer\operator\visualization\MainDisplay.java:30: cannot find symbol
[javac] symbol : class MyDoggyToolWindowManager
[javac] location: class com.rapidminer.operator.visualization.MainDisplay
[javac] MyDoggyToolWindowManager myDoggyToolWindowManager = new MyDoggyToolWindowManager();
[javac] ^
[javac] C:\workspace\RMExtension\src\com\rapidminer\operator\visualization\MainDisplay.java:30: cannot find symbol
[javac] symbol : class MyDoggyToolWindowManager
[javac] location: class com.rapidminer.operator.visualization.MainDisplay
[javac] MyDoggyToolWindowManager myDoggyToolWindowManager = new MyDoggyToolWindowManager();
[javac] ^
[javac] C:\workspace\RMExtension\src\com\rapidminer\operator\visualization\MainDisplay.java:34: cannot find symbol
[javac] symbol : class ToolWindow
[javac] location: class com.rapidminer.operator.visualization.MainDisplay
[javac] for (ToolWindow window : toolWindowManager.getToolWindows())
[javac] ^
[javac] 7 errors
[javac] 4 warnings
The project itself does not show any compile errors in RapidMiner, all java classes build fine. However, I have 2 other Eclipse Projects linked and I think the issue is that ant tries to build using an unrelated makefile / classpath which does not include these required projects. What's the easiest way to resolve this? I'd like to modify my project setup in Eclipse rather than attempt to hack the ant build script if possible.