[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.webtools] Re: JSP from multiple directories

Mauro Molinari wrote:
It is supported, but there is no UI that allows to do that.

You have to change the hidden file org.eclipse.wst.common.component (use Ctrl+Shift+R and type its name) in your project/.settings folder. Add as many <wb-resource> entries with deploy-path="/" as you need. Example:

<wb-resource deploy-path="/" source-path="/folder-with-JSPs-1"/>
<wb-resource deploy-path="/" source-path="/folder-with-JSPs-2"/>
<wb-resource deploy-path="/" source-path="/folder-with-JSPs-3"/>

Thanks Mauro. That all worked. Well done. I'm wondering do you know of any smart way I could write a script to this.


Ideally I like to kick off an ant target which do a lot of eclipse configuration, including the above.

Any ideas?