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

25 lines
804 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="saeol">
<property name="resources" value="src/main/resources" />
<property name="deploy" value="deploy" />
<target name="saeol">
<copy todir="${deploy}/sql">
<fileset dir="src/sql" />
</copy>
<copy todir="${deploy}/intf-conf">
<fileset dir="${resources}/intf-conf" />
</copy>
<copy todir="${deploy}/spring">
<fileset dir="${resources}/spring" />
</copy>
<copy todir="${deploy}/ssl">
<fileset dir="${resources}/ssl" />
</copy>
<copy file="${resources}/application.yml" todir="${deploy}" />
<delete file="xit-saeol-interface.zip" />
<zip destfile="release/xit-saeol-interface.zip" basedir="${deploy}" compress="true" />
</target>
</project>