This is probably not a MyEclipse issue, but I’m hoping you folks might have an idea.
First of all, our development model is setup to allow our display developers to have commit access to WebRoot. and the Java developers to have access to the entire project. We use CVS to enforce permissions, and it works well.
The issue is that our developers create a bunch of content that has ‘source’ files similar to Java files, and these are currently stored in WebRoot (alongside the created files). Unfortunately, this means that our package warfiles include these source files in them. Normally, this isn’t a problem, except that it makes the deployed WAR files much larger than they need to be, which in and of itself isn’t a bad thing, except that it takes longer to build the deployment, as well as it takes significant period of time to re-deploy the site.
Is it possible to have the packager ‘ignore’ certain directories under WebRoot, which would allow us to leave the source files under source-code control (important), but not have these files deployed in the final WAR files since they are not used during deployment?
Thanks in advance!