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

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

made wirk3 work with the new shared code scheme

File size: 1.2 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 <!-- for the benefit of the shared scripts, set release-kit home -->
21 <property name="rk.home" value="${wirk3.home}" />
22
23 <!-- IMPORT OTHER ANT SCRIPTS -->
24 <import file="shared-ant-scripts/init.xml"/>
25 <import file="compile.xml"/>
26 <import file="create-distribution.xml"/>
27 <import file="create-installer.xml"/>
28 <import file="wrap.xml"/>
29
30 <!-- THE MAIN TARGET -->
31 <target name="wirk3" depends="init">
32 <addressedcall target="compile"/>
33 <addressedcall target="create-distribution"/>
34 <addressedcall target="create-installer"/>
35 <addressedcall target="wrap"/>
36 </target>
37
38</project>
Note: See TracBrowser for help on using the repository browser.