Is there a way to get MyEclipse to merge two web projects with an exploded deployment? We have implemented our own framework with a base project which utilises various tool(s) on deployment. The tools are developed as separate web project units.
It seems possible to get half way there by creating the tool as a java project, not a web project, and then referencing that tool project from the base project in the project properties. However, this only automatically merges the tools java classes into the base project. It does not include the jsp’s, css, javscript etc.
At the moment I have a little Ant build script which I have to run manually to build up the files in the tool project’s web root folder but that is clunky as hell and I keep forgetting to run it.
I tried setting the web context for both projects to the context for the base project but the deployment won’t let me deploy the tool over the top of the base project.
Any suggestions or obvious config that I have missed?
Thanks.