I have 2+ RCP applications in the 32/64 variants on Eclipse 4.3 (windows). When i do export them, i get all the platform plugins 4+ times.
What I have now:
\application1
\win32.win32.x86
\plugins (60MB)
\win32.win32.x86_x64
plugins (60MB)
\application2
\win32.win32.x86
\plugins (60MB)
\win32.win32.x86_x64
\plugins (60MB)
Now these application are distributed over network, so the size does matter. Is there a way, i can have the 95% of plugins, which are the same in these directories, in one shared folder with relative path?
What i want to have:
\platform
\plugins (60MB)
\application1
\win32.win32.x86
\plugins (<5MB) + link to "../../platform"
\win32.win32.x86_x64
\plugins (<5MB) + link to "../../platform"
\application2
\win32.win32.x86
\plugins (<5MB) + link to "../../platform"
\win32.win32.x86_x64
\plugins (<5MB) + link to "../../platform"
In this scenario, the platform holds the common stuff. In the separated folders, there is only the minimal startup plugins and my application plugins.
Is this somehow doable? To go to that structure should be to an automated process, so manual GUI interactions are not good.
thx Frank