updated ant file

This commit is contained in:
Ziver Koc 2016-12-12 17:50:41 +01:00
parent ba4a62fd11
commit bf670ba4ac

View file

@ -44,7 +44,7 @@
</target> </target>
<!--build product code--> <!--build product code-->
<target name="release" depends="build"> <target name="package" depends="build">
<war destfile="${releaseDir}/Zallery.war" webxml="WebContent/WEB-INF/web.xml"> <war destfile="${releaseDir}/Zallery.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent"/> <fileset dir="WebContent"/>
<fileset dir="${srcDir}"/> <fileset dir="${srcDir}"/>
@ -62,4 +62,8 @@
</javac> </javac>
</target> </target>
<target name"deploy" depends="package">
</target>
</project> </project>