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.
20 lines
606 B
XML
20 lines
606 B
XML
5 months ago
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
|
<project default="lvis">
|
||
|
<property name="resources" value="src/main/resources" />
|
||
|
<property name="deploy" value="deploy" />
|
||
|
|
||
|
<target name="lvis">
|
||
|
<copy todir="${deploy}/intf-conf">
|
||
|
<fileset dir="${resources}/intf-conf" />
|
||
|
</copy>
|
||
|
<copy file="${resources}/application.yml" todir="${deploy}" />
|
||
|
|
||
|
<antcall target="compress" />
|
||
|
</target>
|
||
|
|
||
|
<target name="compress">
|
||
|
<delete file="xit-lvis-rest.zip" />
|
||
|
<zip destfile="xit-lvis-rest.zip" basedir="${deploy}" compress="true" />
|
||
|
</target>
|
||
|
|
||
|
</project>
|