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.
23 lines
789 B
XML
23 lines
789 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project default="lntris">
|
|
<property name="resources" value="src/main/resources" />
|
|
<property name="deploy" value="deploy" />
|
|
|
|
<target name="lntris">
|
|
<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}" />
|
|
<copy file="${resources}/xit-crypto.conf" todir="${deploy}" />
|
|
|
|
<delete file="xit-lntris-interface.zip" />
|
|
<zip destfile="xit-lntris-interface.zip" basedir="${deploy}" compress="true" />
|
|
</target>
|
|
|
|
</project> |