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

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

changes to wirk3 after ant cleaned up

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