On Thu, 10 Jan 2002, Tom Callaghan <[EMAIL PROTECTED]>
wrote:
> <war warfile="H:\config\mydomain\applications\myBean.war"
> webxml="META-INF\web.xml">
> <webinf dir="WEB-INF"/>
> <classes dir="WEB-INF\classes\rhiuk\test"/>
> <exclude name="**/*.java"/>
> </war>
>
> But when I examine the myBean.war file all the .java files are
> there.
The <webinf> element is doing that. You probably wanted to say
<war warfile="H:\config\mydomain\applications\myBean.war"
webxml="META-INF\web.xml">
<webinf dir="WEB-INF">
<exclude name="classes/**" />
</webinf>
<classes dir="WEB-INF\classes\rhiuk\test"/>
<exclude name="**/*.java"/>
</classes>
</war>
Stefan
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>