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

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

wirk3 to include uninstaller and a little fix for gems link

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