| [news.eclipse.newcomer] Re: Change dynamic web project settings after creation |
Is there documentation on that file????!!!!
<?xml version="1.0" encoding="UTF-8"?>
<project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="onlineReporting2">
<wb-resource deploy-path="/" source-path="/input/webroot"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/input/javasrc"/>
<property name="context-root" value="onlineReporting2"/>
<property name="java-output-path"/>
</wb-module>
</project-modules>
This looks reasonable.
I am assuming all of these paths are relative to context-root, and that context-root is not used for web app or anything.
What I don't get is why there is no value for java-output-path.
If I want everything to go to output, would this be correct.....
<?xml version="1.0" encoding="UTF-8"?>
<project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="onlineReporting2">
<wb-resource deploy-path="/ouput/webroot" source-path="/input/webroot"/>
<wb-resource deploy-path="/output/webroot/WEB-INF/classes" source-path="/input/javasrc"/>
<property name="context-root" value="onlineReporting2"/>
<property name="java-output-path"/>
</wb-module>
</project-modules>
but then, where is it getting my jar files from?
how do I define that in here? unfortunately build for jboss and tomcat and so we have two directories of jar files to get jars from as well.
Cheers, Larry
thanks, Dean