source: release-kits/wirk3/ant-scripts/build.xml@ 16245

Last change on this file since 16245 was 16245, checked in by oranfry, 16 years ago

change from gs3.ico -> icon.ico and set date

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 February 2008
5 Windows Release Kit for greenstone3
6 Oran Fry
7 ..........................................................
8-->
9<project name="wirk3-build" default="wirk3">
10
11 <!-- CONSTANTS -->
12
13 <!-- the size of the resourse chunks to be put in the wrapped installer -->
14 <property name="resources.chunksize" value="8388608"/><!-- 8MiB -->
15
16 <!-- the version numbers of bundled things -->
17 <property name="bundled.version.tomcat" value="5.5.25"/>
18 <property name="bundled.version.ant" value="1.6.5"/>
19
20 <!-- set date !AD HOC, CHANGE SOON -->
21 <property name="current.month" value="Jun"/>
22 <property name="current.year" value="2008"/>
23
24 <!-- for the benefit of the shared scripts, set release-kit home -->
25 <property name="rk.home" value="${wirk3.home}" />
26
27 <!-- IMPORT OTHER ANT SCRIPTS -->
28 <import file="shared-ant-scripts/init.xml"/>
29 <import file="compile.xml"/>
30 <import file="create-distribution.xml"/>
31 <import file="create-installer.xml"/>
32 <import file="wrap.xml"/>
33
34 <!-- THE MAIN TARGET -->
35 <target name="wirk3" depends="init">
36 <addressedcall target="compile"/>
37 <addressedcall target="create-distribution"/>
38 <addressedcall target="create-installer"/>
39 <addressedcall target="wrap"/>
40 </target>
41
42</project>
Note: See TracBrowser for help on using the repository browser.