source: other-projects/trunk/realistic-books/packages/AntInstaller/examples/buildtypes/script-type/installer/build-alternative.xml@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 2.0 KB
Line 
1<?xml version="1.0"?>
2
3<project name="Installation Build" default="" basedir=".">
4
5 <property file="ant.install.properties"/>
6
7
8 <target name="default" depends="">
9 <echo message="RUNNING ALTERNATIVE BUILD"/>
10 <echo message="Entered Property [${myProperty}]"/>
11 <echo message="Checkbox Property [${isvalue}]"/>
12 <echo message="Colour selected [${colour}]"/>
13 <echo message="Installation Directory [${installDir}]"/>
14 <echo message="Web xml [${webxml}]"/>
15 <echo message="validated text [${validatedtext}]"/>
16 <echo message="unvalidated text [${unvalidatedtext}]"/>
17 <echo message="insecure password [${unsafepassword}]"/>
18 <echo message="lang [${lang}]"/>
19 <echo message="myProperty2 [${myProperty2}]"/>
20 <echo message="colour2 [${colour2}]"/>
21 <echo message="myProperty3 [${myProperty3}]"/>
22 <echo message="date.property [${date.property}]"/>
23 <echo message="colourtarget [${colourtarget}]"/>
24 </target>
25 <target name="tgsrc" depends="">
26 <echo message="Installing Source files"/>
27 </target>
28 <target name="cleanuptarget" depends="">
29 <echo message="Clean up run at end it is added to the last page (the progress page)"/>
30 </target>
31
32 <!-- Operating System Specific targets -->
33 <property environment="env."/>
34 <target name="myOsSpecific-linux" depends="">
35 <echo message="Should only run on Linux"/>
36 </target>
37 <target name="myOsSpecific-mac" depends="">
38 <echo message="Should only run on Apple Mac"/>
39 </target>
40 <target name="myOsSpecific-sun" depends="">
41 <echo message="Should only run on Sun OS or Solaris"/>
42 </target>
43 <target name="myOsSpecific-win" depends="">
44 <echo message="Should only run on Windoze"/>
45 </target>
46 <target name="myOsSpecific-other" depends="">
47 <echo message="Should run if none of the others run"/>
48 </target>
49 <target name="tgt1" depends="">
50 <echo message="TARGET ONE selected"/>
51 </target>
52 <target name="tgt2" depends="">
53 <echo message="TARGET TWO selected"/>
54 </target>
55 <target name="tgt3" depends="">
56 <echo message="TARGET THREE selected"/>
57 </target>
58
59
60</project>
Note: See TracBrowser for help on using the repository browser.