You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Sachin Chowdhary <cs...@pisoftek.com> on 2003/05/22 14:29:39 UTC

Bulding problem (New Bie)


	As i am building my project using Ant it is giving warning that incluide
webxml in project. by webxml attribute

              but i am specifying it in <war    ....> tag do i need to
exculude it in other tags



     <target name="war" depends="compile">
         <war warfile="webi2v.war" webxml="./web/WEB-INF/web.xml">
             <fileset dir="./" includes="./web/**/*.*"/>
             <webinf dir="./web/WEB-INF" includes="**/*"/>
             <lib dir="./web/WEB-INF/lib"/>
             <classes dir="./web/WEB-INF/classes"
includes="**/*.properties"/>
         </war>
     </target>