apzl_leasing/build.xml

56 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="build" name="apzl_leasing">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<property name="compiler.args.clms" value="-encoding UTF-8"/>
<path id="tomcat-lib">
<fileset dir="../ant_ext_lib/tomcat8lib">
<include name="*.jar"/>
</fileset>
</path>
<path id="apzl-lib">
<fileset dir="WebContent/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
</path>
<path id="apzl.classpath">
<path refid="tomcat-lib"/>
<path refid="apzl-lib"/>
</path>
<target name="clean">
<delete dir="WebContent/WEB-INF/classes"/>
</target>
<target name="init">
<mkdir dir="WebContent/WEB-INF/classes"/>
</target>
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="WebContent/WEB-INF/classes" includeantruntime="false"
source="${source}" target="${target}">
<compilerarg line="${compiler.args.clms}"/>
<src path="src"/>
<src path="src_core"/>
<src path="src_app_fresh"/>
<src path="src_tenwa"/>
<src path="src_jbo"/>
<src path="src_sys"/>
<src path="src_cmb"/>
<src path="calc"/>
<src path="config"/>
<src path="src_invoice"/>
<src path="src_acct"/>
<src path="src_prd"/>
<src path="src_base"/>
<classpath refid="apzl.classpath"/>
</javac>
</target>
</project>