You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
546 B

<?xml version="1.0" encoding="UTF-8"?>
<project name="evo-web-build" basedir="../" default="build-war">
<import file="common/evo-web-build-common.xml" />
<target name="build-war" depends="web-clean,web-create-jar">
<war destfile="${web.dist.dir}/${ant.project.name}.war" webxml="${basedir}/web/WEB-INF/web.xml">
<fileset dir="${basedir}/web">
<include name="**/*.*" />
<exclude name="WEB-INF/web.xml" />
</fileset>
<lib file="${web.dist.dir}/${ant.project.name}.jar"/>
</war>
</target>
</project>