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

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

use the compressed components instead of the loose files

File size: 1.5 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 <property name="bundled.version.imagemagick" value="6.4.3"/>
18 <property name="bundled.version.ghostscript" value="8.63"/>
19
20 <!-- the size of the resourse chunks to be put in the wrapped installer -->
21 <property name="resources.chunksize" value="8388608"/><!-- 8MiB -->
22
23 <!-- for the benefit of the shared scripts, set release-kit home -->
24 <property name="rk.home" value="${wirk3.home}" />
25 <property name="rk.os" value="windows" />
26
27 <!-- IMPORT OTHER ANT SCRIPTS -->
28 <import file="shared-ant-scripts/init.xml"/>
29 <import file="shared-ant-scripts/operations-on-gli.xml"/>
30 <import file="../greenstone3/ant-scripts/rk3-targets.xml"/>
31
32 <import file="compile.xml"/>
33 <import file="create-distribution.xml"/>
34 <import file="create-components.xml"/>
35 <import file="create-installer.xml"/>
36 <import file="wrap.xml"/>
37
38 <!-- THE MAIN TARGET -->
39 <target name="wirk3" depends="init">
40 <antcall target="compile"/>
41 <antcall target="create-distribution"/>
42 <antcall target="create-components"/>
43 <antcall target="create-installer"/>
44 <antcall target="wrap"/>
45 </target>
46
47
48
49</project>
Note: See TracBrowser for help on using the repository browser.