I got 2 eclipse project in diff workspaces.
First one use spring RmiServiceExporter. The second gwt project is in another eclipse workspace, this project should use shared stub classes from first project as rmi client.
I want to edit java stub classes in one project and they should automatically change in another. Of course i can copy past them, but i want to automate this process.
Pressing Link source in java build path of my eclipse project, i can link source folder, but package name are messing. Second project, from where i link source classes, can't compile linked classes, since eclipse consider this classes from root package.
How can i link source folder and keep packages name ?
Thank you