*** empty log message ***
[thera-pi.git] / Build / build.xml
blobecff9804cd03a3c0a38b31c761a67ac3d9205c29
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <project basedir="." default="dist" name="Build">
3         <property file="../Build/build-common.properties"/>
5         <import file="../Build/build-common.xml"/>
7     <target name="clean">
8         <property name="build.target" value="clean"/>
9         <ant target="subprojects"/>
10         <delete dir="${dir.dist}"/>
11     </target>
12         <target name="dist" depends="jars,copyfiles"/>
13         
14         <target name="copyfiles">
15                 <ant antfile="${dir.therapi.common}/build.xml" dir="${dir.therapi.common}" inheritAll="false" target="copylibs"/>
16                 <ant antfile="${dir.files}/build.xml" dir="${dir.files}" inheritAll="false" target="copyfiles"/>
17         </target>
19     <target description="Build all JARs in dist directory." name="jars" depends="buildnumber">
20         <property name="build.target" value="jar"/>
21         <ant target="subprojects"/>
22     </target>
24     <target description="Build the same target for all subprojects." name="subprojects">
25         <ant dir="${dir.therapi.common}" target="${build.target}"/>
26         <ant dir="${dir.nebraska}" target="${build.target}"/>
27         <ant dir="${dir.fahrdienst.exporter}" target="${build.target}"/>
28         <ant dir="${dir.gbriefe}" target="${build.target}"/>
29         <ant dir="${dir.pdf.drucker}" target="${build.target}"/>
30         <ant dir="${dir.pdf.loader}" target="${build.target}"/>
31         <ant dir="${dir.pi.help}" target="${build.target}"/>
32         <ant dir="${dir.pi.tool}" target="${build.target}"/>
33         <ant dir="${dir.prepare.therapi}" target="${build.target}"/>
34         <ant dir="${dir.reha.wissen}" target="${build.target}"/>
35         <ant dir="${dir.icd.suche}" target="${build.target}"/>
36         <ant dir="${dir.therapi.updates}" target="${build.target}"/>
37         <ant dir="${dir.arzt.baustein}" target="${build.target}"/>
38         <ant dir="${dir.bmi.rechner}" target="${build.target}"/>
39         <ant dir="${dir.lva.entlassung}" target="${build.target}"/>
40         <ant dir="${dir.offene.posten}" target="${build.target}"/>
41         <ant dir="${dir.op.rgaf}" target="${build.target}"/>
42         <ant dir="${dir.reha.301}" target="${build.target}"/>
43         <ant dir="${dir.reha.bill.edit}" target="${build.target}"/>
44         <ant dir="${dir.reha.kassenbuch}" target="${build.target}"/>
45         <ant dir="${dir.reha.mail}" target="${build.target}"/>
46         <ant dir="${dir.reha.sql}" target="${build.target}"/>
47         <ant dir="${dir.reha.statistik}" target="${build.target}"/>
48         <ant dir="${dir.reha.urlaub}" target="${build.target}"/>
49         <ant dir="${dir.reha.xswing}" target="${build.target}"/>
50         <ant dir="${dir.text.baustein}" target="${build.target}"/>
51         <ant dir="${dir.therapi}" target="${build.target}"/>
52         <ant dir="${dir.reha}" target="${build.target}"/>
53         <ant dir="${dir.files}" target="${build.target}"/>
54     </target>
56         <target name="jar"/>
57 </project>