I am using Ant to build my war file. my build file is 

<target name="createwar">
          <war destfile="${war.file.name}"  webxml="WEB-INF/myapp.xml">
                 <fileset dir="./pages"  excludes="*.war, **/*.nbattrs, *.java"/>
               <webinf  dir="./etc"    includes="*.tld, ./struts-config.xml" 
excludes="**/*.jar, **/*.class"/>
                <lib dir="./lib" > </lib>
                <classes dir="${build.dir}" includes="**/*.properties" />
          </war>
      </target>


When i run the build only content of pages dir is included, Can some one help me to 
debug tht build file.

Thanks and Regards
Deepak

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to